diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-02-23 09:29:37 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-02-23 09:29:37 +0800 |
commit | f7d2b33404f9b13df59833c647c750809fdb4985 (patch) | |
tree | 8f742e6bfcbb5d9e7880fe01042061646ff95149 /lib | |
parent | 21041225ab82f2e13a12f163189110df03c2a598 (diff) | |
download | gsoc2013-epiphany-f7d2b33404f9b13df59833c647c750809fdb4985.tar gsoc2013-epiphany-f7d2b33404f9b13df59833c647c750809fdb4985.tar.gz gsoc2013-epiphany-f7d2b33404f9b13df59833c647c750809fdb4985.tar.bz2 gsoc2013-epiphany-f7d2b33404f9b13df59833c647c750809fdb4985.tar.lz gsoc2013-epiphany-f7d2b33404f9b13df59833c647c750809fdb4985.tar.xz gsoc2013-epiphany-f7d2b33404f9b13df59833c647c750809fdb4985.tar.zst gsoc2013-epiphany-f7d2b33404f9b13df59833c647c750809fdb4985.zip |
Unset size request if the fixed toolbar is present. That way we don't
2005-02-23 Christian Persch <chpe@cvs.gnome.org>
* lib/egg/egg-editable-toolbar.c: (update_fixed):
Unset size request if the fixed toolbar is present. That way
we don't truncate the 0th toolbar when it only contains the spinner.
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/egg/egg-editable-toolbar.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/egg/egg-editable-toolbar.c b/lib/egg/egg-editable-toolbar.c index cd802d6d0..aeaccbdbf 100755 --- a/lib/egg/egg-editable-toolbar.c +++ b/lib/egg/egg-editable-toolbar.c @@ -807,6 +807,9 @@ update_fixed (EggEditableToolbar *t) gtk_box_pack_end (GTK_BOX (dock), toolbar, FALSE, TRUE, 0); gtk_widget_show (toolbar); + + gtk_widget_set_size_request (dock, -1, -1); + gtk_widget_queue_resize_no_redraw (dock); } } |