diff options
author | Christian Persch <chpe@src.gnome.org> | 2009-02-04 03:53:49 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2009-02-04 03:53:49 +0800 |
commit | cec6583c2879a7882df5087b592df8c70c2268f6 (patch) | |
tree | 93319cb2bc54371b035a6f77ba5a73eb59ca1651 /src | |
parent | 94954eccafcbcf86bf99bb3f10bb45720c77048d (diff) | |
download | gsoc2013-epiphany-cec6583c2879a7882df5087b592df8c70c2268f6.tar gsoc2013-epiphany-cec6583c2879a7882df5087b592df8c70c2268f6.tar.gz gsoc2013-epiphany-cec6583c2879a7882df5087b592df8c70c2268f6.tar.bz2 gsoc2013-epiphany-cec6583c2879a7882df5087b592df8c70c2268f6.tar.lz gsoc2013-epiphany-cec6583c2879a7882df5087b592df8c70c2268f6.tar.xz gsoc2013-epiphany-cec6583c2879a7882df5087b592df8c70c2268f6.tar.zst gsoc2013-epiphany-cec6583c2879a7882df5087b592df8c70c2268f6.zip |
Only show the fixed toolbar when the leave-fullscreen button is to be shown. Shoudl fix bug #570349
svn path=/trunk/; revision=8749
Diffstat (limited to 'src')
-rw-r--r-- | src/ephy-toolbar.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c index 19e08b39d..f9cd554c6 100644 --- a/src/ephy-toolbar.c +++ b/src/ephy-toolbar.c @@ -122,8 +122,11 @@ ephy_toolbar_update_fixed_visibility (EphyToolbar *toolbar) gboolean show; show = priv->leave_fullscreen_visible; +#if 0 g_object_set (priv->exit_button, "visible", show, "sensitive", show, NULL); +#endif + g_object_set (priv->fixed_toolbar, "visible", show, NULL); } static void |