diff --git a/extensions/toolbar-editor.c b/extensions/toolbar-editor.c index f330aa9d..93486682 100644 --- a/extensions/toolbar-editor.c +++ b/extensions/toolbar-editor.c @@ -104,7 +104,12 @@ static GSList *tb_editor_array_to_list(const gchar **items) name = items; while (*name != NULL) { + #ifdef HAVE_GRANITE + /* A "new tab" button is already part of the notebook */ + if (*name[0] != '\0' && strcmp (*name, "TabNew")) + #else if (*name[0] != '\0') + #endif list = g_slist_append(list, g_strdup(*name)); name++; }