diff options
author | Matthias Clasen <mclasen@redhat.com> | 2004-11-26 06:17:49 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2004-11-26 06:17:49 +0000 |
commit | 19463a94093d9d2a35891734160336696e9bd7ef (patch) | |
tree | e600793ae7fcdc4f3336bdf2dc7ed4ead2bddcc8 | |
parent | 5b29d3d55e5901d3b86bf76aef96f0893e4a11fa (diff) | |
download | gtk+-19463a94093d9d2a35891734160336696e9bd7ef.tar.gz |
Queue a layout. (#159436, Olivier Andrieu)
2004-11-26 Matthias Clasen <mclasen@redhat.com>
* gtk/gtkiconview.c (gtk_icon_view_set_model):
Queue a layout. (#159436, Olivier Andrieu)
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 1 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 1 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 1 | ||||
-rw-r--r-- | gtk/gtkiconview.c | 2 |
5 files changed, 6 insertions, 0 deletions
@@ -2,6 +2,7 @@ * gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the new model, and check them all. (#159389, Olivier Andrieu) + (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu) * gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display): Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg) diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index c6c2600a14..e87b10d190 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -2,6 +2,7 @@ * gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the new model, and check them all. (#159389, Olivier Andrieu) + (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu) * gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display): Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg) diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index c6c2600a14..e87b10d190 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -2,6 +2,7 @@ * gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the new model, and check them all. (#159389, Olivier Andrieu) + (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu) * gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display): Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg) diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index c6c2600a14..e87b10d190 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -2,6 +2,7 @@ * gtk/gtkiconview.c (gtk_icon_view_set_model): Check column types on the new model, and check them all. (#159389, Olivier Andrieu) + (gtk_icon_view_set_model): Queue a layout. (#159436, Olivier Andrieu) * gdk/x11/gdkselection-x11.c (gdk_text_property_to_utf8_list_for_display): Don't crash if Xlib fails to return UTF-8. (#159373, Kristian Høgsberg) diff --git a/gtk/gtkiconview.c b/gtk/gtkiconview.c index 9892eaaa6a..79787f093e 100644 --- a/gtk/gtkiconview.c +++ b/gtk/gtkiconview.c @@ -3035,6 +3035,8 @@ gtk_icon_view_set_model (GtkIconView *icon_view, gtk_icon_view_build_items (icon_view); } + gtk_icon_view_queue_layout (icon_view); + g_object_notify (G_OBJECT (icon_view), "model"); } |