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:
Matthias Clasen 2005-02-28 04:25:20 +00:00 committed by Matthias Clasen
parent d47d149aa6
commit c78b24e7d3
4 changed files with 22 additions and 1 deletions

View File

@ -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,

View File

@ -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,

View File

@ -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,

View File

@ -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 ();