summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Dywan <christian@twotoasts.de>2010-01-11 17:37:13 +0100
committerChristian Dywan <christian@twotoasts.de>2010-01-11 17:37:13 +0100
commit2520d02be9df6cb9be443f14abac9778afb62bad (patch)
treebd370b6089d126583675ec7d4dc8fd1f6eac27f4
parentd32b061895378aa721cca52065608e1b34a60e2b (diff)
downloadgdk-pixbuf-2520d02be9df6cb9be443f14abac9778afb62bad.tar.gz
Limit GtkContainer::border-width to 65535
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=605199
-rw-r--r--gtk/gtkcontainer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c
index d2b4bac88..9a9d1bf87 100644
--- a/gtk/gtkcontainer.c
+++ b/gtk/gtkcontainer.c
@@ -246,7 +246,7 @@ gtk_container_class_init (GtkContainerClass *class)
P_("Border width"),
P_("The width of the empty border outside the containers children"),
0,
- G_MAXINT,
+ 65535,
0,
GTK_PARAM_READWRITE));
g_object_class_install_property (gobject_class,