forked from AuroraMiddleware/gtk
Unset "focus-on-click" for the save folder combo. (#168688, Sven Neumann)
2005-02-27 Matthias Clasen <mclasen@redhat.com> * gtk/gtkfilechooserdefault.c (save_folder_combo_create): Unset "focus-on-click" for the save folder combo. (#168688, Sven Neumann)
This commit is contained in:
parent
d47d149aa6
commit
c78b24e7d3
@ -1,3 +1,9 @@
|
||||
2005-02-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (save_folder_combo_create):
|
||||
Unset "focus-on-click" for the save folder combo. (#168688,
|
||||
Sven Neumann)
|
||||
|
||||
2005-02-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* demos/testpixbuf.c (main): Remove a C++ comment. (#168531,
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-02-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (save_folder_combo_create):
|
||||
Unset "focus-on-click" for the save folder combo. (#168688,
|
||||
Sven Neumann)
|
||||
|
||||
2005-02-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* demos/testpixbuf.c (main): Remove a C++ comment. (#168531,
|
||||
|
@ -1,3 +1,9 @@
|
||||
2005-02-27 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (save_folder_combo_create):
|
||||
Unset "focus-on-click" for the save folder combo. (#168688,
|
||||
Sven Neumann)
|
||||
|
||||
2005-02-25 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* demos/testpixbuf.c (main): Remove a C++ comment. (#168531,
|
||||
|
@ -3451,7 +3451,10 @@ save_folder_combo_create (GtkFileChooserDefault *impl)
|
||||
GtkWidget *combo;
|
||||
GtkCellRenderer *cell;
|
||||
|
||||
combo = gtk_combo_box_new_with_model (GTK_TREE_MODEL (impl->shortcuts_model));
|
||||
combo = g_object_new (GTK_TYPE_COMBO_BOX,
|
||||
"model", impl->shortcuts_model,
|
||||
"focus-on-click", FALSE,
|
||||
NULL);
|
||||
gtk_widget_show (combo);
|
||||
|
||||
cell = gtk_cell_renderer_pixbuf_new ();
|
||||
|
Loading…
Reference in New Issue
Block a user