forked from AuroraMiddleware/gtk
Call ::initial_focus() on the child before calling ::map() on our parent
2006-02-16 Federico Mena Quintero <federico@novell.com> * gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_map): Call ::initial_focus() on the child before calling ::map() on our parent class. This will prevent the shortcuts treeview from highlighting its first row as a result of getting assigned focus by gtk_dialog_map().
This commit is contained in:
parent
2540f8298b
commit
c60f666378
@ -1,3 +1,11 @@
|
||||
2006-02-16 Federico Mena Quintero <federico@novell.com>
|
||||
|
||||
* gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_map): Call
|
||||
::initial_focus() on the child before calling ::map() on our
|
||||
parent class. This will prevent the shortcuts treeview from
|
||||
highlighting its first row as a result of getting assigned focus
|
||||
by gtk_dialog_map().
|
||||
|
||||
2006-02-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_send_expose): Remove redundant
|
||||
|
@ -1,3 +1,11 @@
|
||||
2006-02-16 Federico Mena Quintero <federico@novell.com>
|
||||
|
||||
* gtk/gtkfilechooserdialog.c (gtk_file_chooser_dialog_map): Call
|
||||
::initial_focus() on the child before calling ::map() on our
|
||||
parent class. This will prevent the shortcuts treeview from
|
||||
highlighting its first row as a result of getting assigned focus
|
||||
by gtk_dialog_map().
|
||||
|
||||
2006-02-14 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkwidget.c (gtk_widget_send_expose): Remove redundant
|
||||
|
@ -488,9 +488,9 @@ gtk_file_chooser_dialog_map (GtkWidget *widget)
|
||||
if (!GTK_WIDGET_MAPPED (priv->widget))
|
||||
gtk_widget_map (priv->widget);
|
||||
|
||||
GTK_WIDGET_CLASS (parent_class)->map (widget);
|
||||
|
||||
_gtk_file_chooser_embed_initial_focus (GTK_FILE_CHOOSER_EMBED (priv->widget));
|
||||
|
||||
GTK_WIDGET_CLASS (parent_class)->map (widget);
|
||||
}
|
||||
|
||||
/* GtkWidget::unmap handler */
|
||||
|
Loading…
Reference in New Issue
Block a user