gtk+ r20139 - in trunk: . gtk



Author: jap
Date: Sat May 24 19:03:33 2008
New Revision: 20139
URL: http://svn.gnome.org/viewvc/gtk+?rev=20139&view=rev

Log:
2008-05-24  Jan Arne Petersen  <jpetersen jpetersen org>

	* gtk/gtktoolbar.c: (gtk_toolbar_class_init): Change defaults of child
	properties "expand" and "homogeneous" from TRUE to FALSE (as they are
	used in GtkToolItem) (#532787).



Modified:
   trunk/ChangeLog
   trunk/gtk/gtktoolbar.c

Modified: trunk/gtk/gtktoolbar.c
==============================================================================
--- trunk/gtk/gtktoolbar.c	(original)
+++ trunk/gtk/gtktoolbar.c	Sat May 24 19:03:33 2008
@@ -573,7 +573,7 @@
 					      g_param_spec_boolean ("expand", 
 								    P_("Expand"), 
 								    P_("Whether the item should receive extra space when the toolbar grows"),
-								    TRUE,
+								    FALSE,
 								    GTK_PARAM_READWRITE));
   
   gtk_container_class_install_child_property (container_class,
@@ -581,7 +581,7 @@
 					      g_param_spec_boolean ("homogeneous", 
 								    P_("Homogeneous"), 
 								    P_("Whether the item should be the same size as other homogeneous items"),
-								    TRUE,
+								    FALSE,
 								    GTK_PARAM_READWRITE));
   
   /* style properties */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]