diff options
author | Matthias Clasen <mclasen@redhat.com> | 2007-11-21 05:49:35 +0000 |
---|---|---|
committer | Matthias Clasen <matthiasc@src.gnome.org> | 2007-11-21 05:49:35 +0000 |
commit | 91166093543deb8c6261f1f6821a5b3de4583613 (patch) | |
tree | 1ec893756b0dad40473ad72fc87957b01a64cea3 /gtk/gtktoolbar.c | |
parent | 11a88edb28cdc0aa183fb8aad2deb3c4bbd132ca (diff) | |
download | gtk+-91166093543deb8c6261f1f6821a5b3de4583613.tar.gz |
Fix the default value of the toolbar-style property. (#489782, Jan Janech)
2007-11-21 Matthias Clasen <mclasen@redhat.com>
* gtk/gtktoolbar.c: Fix the default value of the toolbar-style
property. (#489782, Jan Janech)
svn path=/trunk/; revision=19018
Diffstat (limited to 'gtk/gtktoolbar.c')
-rw-r--r-- | gtk/gtktoolbar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtktoolbar.c b/gtk/gtktoolbar.c index 0d2fe327de..6ed46b9aca 100644 --- a/gtk/gtktoolbar.c +++ b/gtk/gtktoolbar.c @@ -484,7 +484,7 @@ gtk_toolbar_class_init (GtkToolbarClass *klass) P_("Toolbar Style"), P_("How to draw the toolbar"), GTK_TYPE_TOOLBAR_STYLE, - GTK_TOOLBAR_ICONS, + DEFAULT_TOOLBAR_STYLE, GTK_PARAM_READWRITE)); g_object_class_install_property (gobject_class, PROP_SHOW_ARROW, |