diff options
author | Timm Bäder <mail@baedert.org> | 2014-08-13 11:32:47 +0200 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-08-14 00:13:18 -0400 |
commit | f09573757df07700b0510945c8bcd83171bd3a79 (patch) | |
tree | 88b45e55d07881c9feaf945ba7f41c29ed810d93 | |
parent | 491cab3f7f4a14a7ac9254a047fb95859730dc66 (diff) | |
download | gtk+-f09573757df07700b0510945c8bcd83171bd3a79.tar.gz |
GtkListBoxRow: Set clip
https://bugzilla.gnome.org/show_bug.cgi?id=734709
-rw-r--r-- | gtk/gtklistbox.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gtk/gtklistbox.c b/gtk/gtklistbox.c index 56ffc341ca..78f3552872 100644 --- a/gtk/gtklistbox.c +++ b/gtk/gtklistbox.c @@ -23,6 +23,7 @@ #include "gtkmarshalers.h" #include "gtkprivate.h" #include "gtkintl.h" +#include "gtkwidgetprivate.h" #include <float.h> #include <math.h> @@ -3135,6 +3136,8 @@ gtk_list_box_row_size_allocate (GtkWidget *widget, gtk_widget_size_allocate (child, &child_allocation); } + + _gtk_widget_set_simple_clip (widget); } /** |