mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-05 16:20:10 +00:00
Don't install the settings_notify_cb from here, since it may be called
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_style_set): Don't install the settings_notify_cb from here, since it may be called before the first screen_changed signal, confusing the logic in gtk_file_chooser_screen_changed(). (#148803, Abel Daniel)
This commit is contained in:
parent
45c766084d
commit
766d78659c
@ -1,5 +1,11 @@
|
||||
2004-08-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_style_set):
|
||||
Don't install the settings_notify_cb from here, since it
|
||||
may be called before the first screen_changed signal,
|
||||
confusing the logic in gtk_file_chooser_screen_changed().
|
||||
(#148803, Abel Daniel)
|
||||
|
||||
* gtk/gtkcombobox.c: Make re-sensitivation work
|
||||
in menu mode.
|
||||
|
||||
|
@ -1,5 +1,11 @@
|
||||
2004-08-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_style_set):
|
||||
Don't install the settings_notify_cb from here, since it
|
||||
may be called before the first screen_changed signal,
|
||||
confusing the logic in gtk_file_chooser_screen_changed().
|
||||
(#148803, Abel Daniel)
|
||||
|
||||
* gtk/gtkcombobox.c: Make re-sensitivation work
|
||||
in menu mode.
|
||||
|
||||
|
@ -1,5 +1,11 @@
|
||||
2004-08-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_style_set):
|
||||
Don't install the settings_notify_cb from here, since it
|
||||
may be called before the first screen_changed signal,
|
||||
confusing the logic in gtk_file_chooser_screen_changed().
|
||||
(#148803, Abel Daniel)
|
||||
|
||||
* gtk/gtkcombobox.c: Make re-sensitivation work
|
||||
in menu mode.
|
||||
|
||||
|
@ -1,5 +1,11 @@
|
||||
2004-08-13 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* gtk/gtkfilechooserdefault.c (gtk_file_chooser_default_style_set):
|
||||
Don't install the settings_notify_cb from here, since it
|
||||
may be called before the first screen_changed signal,
|
||||
confusing the logic in gtk_file_chooser_screen_changed().
|
||||
(#148803, Abel Daniel)
|
||||
|
||||
* gtk/gtkcombobox.c: Make re-sensitivation work
|
||||
in menu mode.
|
||||
|
||||
|
@ -3810,8 +3810,8 @@ check_icon_theme (GtkFileChooserDefault *impl)
|
||||
}
|
||||
|
||||
static void
|
||||
gtk_file_chooser_default_style_set (GtkWidget *widget,
|
||||
GtkStyle *previous_style)
|
||||
gtk_file_chooser_default_style_set (GtkWidget *widget,
|
||||
GtkStyle *previous_style)
|
||||
{
|
||||
GtkFileChooserDefault *impl;
|
||||
|
||||
@ -3820,7 +3820,8 @@ gtk_file_chooser_default_style_set (GtkWidget *widget,
|
||||
if (GTK_WIDGET_CLASS (parent_class)->style_set)
|
||||
GTK_WIDGET_CLASS (parent_class)->style_set (widget, previous_style);
|
||||
|
||||
check_icon_theme (impl);
|
||||
if (gtk_widget_has_screen (GTK_WIDGET (impl)))
|
||||
change_icon_theme (impl);
|
||||
|
||||
g_signal_emit_by_name (widget, "default-size-changed");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user