[gtk+/native-layout] Limit GtkContainer::border-width to 65535
- From: Tristan Van Berkom <tvb src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtk+/native-layout] Limit GtkContainer::border-width to 65535
- Date: Sun, 4 Apr 2010 02:17:16 +0000 (UTC)
commit 4285f21b3b03516663d2689340c7ef5c0c0799ae
Author: Christian Dywan <christian twotoasts de>
Date: Mon Jan 11 17:37:13 2010 +0100
Limit GtkContainer::border-width to 65535
Fixes: https://bugzilla.gnome.org/show_bug.cgi?id=605199
gtk/gtkcontainer.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkcontainer.c b/gtk/gtkcontainer.c
index d2b4bac..9a9d1bf 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,
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]