diff options
author | Wolfgang Ulbrich <[email protected]> | 2015-11-20 16:54:38 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2015-11-20 16:54:38 +0100 |
commit | 1e8eef25c7fa7ce17cd978ccc246fbfd40eb38f6 (patch) | |
tree | 90232d35bfc0eae2cb2f55b7d6aa8412410e8f86 /src/profile-editor.c | |
parent | d9a196be38781261573361e5e71ee6e133e06e23 (diff) | |
download | mate-terminal-1e8eef25c7fa7ce17cd978ccc246fbfd40eb38f6.tar.bz2 mate-terminal-1e8eef25c7fa7ce17cd978ccc246fbfd40eb38f6.tar.xz |
GTK3: avoid duplicate schema name in profil editor
Diffstat (limited to 'src/profile-editor.c')
-rw-r--r-- | src/profile-editor.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/profile-editor.c b/src/profile-editor.c index d66b5da..ce847ed 100644 --- a/src/profile-editor.c +++ b/src/profile-editor.c @@ -544,8 +544,9 @@ init_color_scheme_menu (GtkWidget *combo_box) g_object_unref (store); renderer = gtk_cell_renderer_text_new (); - gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, TRUE); - gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), renderer, "text", 0, NULL); +/*FIXME, avoid double loading of color schemes names from UI file */ +/* gtk_cell_layout_pack_start (GTK_CELL_LAYOUT (combo_box), renderer, TRUE); + gtk_cell_layout_set_attributes (GTK_CELL_LAYOUT (combo_box), renderer, "text", 0, NULL);*/ #else |