aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDiego Escalante Urrelo <descalante@igalia.com>2010-03-01 11:05:43 +0800
committerDiego Escalante Urrelo <descalante@igalia.com>2010-04-14 04:47:56 +0800
commit7f5202b49a8015bc09faa6e10c9f78c3e97ab83b (patch)
tree43b9942c22b4e07d4b6542929816eebcaa76b68d /src
parent55d0eb3dcb478a07e3209bd5dd192d9a52e8aa8f (diff)
downloadgsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.tar
gsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.tar.gz
gsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.tar.bz2
gsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.tar.lz
gsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.tar.xz
gsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.tar.zst
gsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.zip
ephy-toolbar: fix leave-fullscreen item visibility
We were explicitely setting the separator and toolbar visibility but not the exit_button item. This meant the fixed_toolbar was shown but the exit_button remained hidden. Bug #611445
Diffstat (limited to 'src')
-rw-r--r--src/ephy-toolbar.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c
index a72183145..9bb1e61e7 100644
--- a/src/ephy-toolbar.c
+++ b/src/ephy-toolbar.c
@@ -135,6 +135,7 @@ ephy_toolbar_update_fixed_visibility (EphyToolbar *toolbar)
show = priv->leave_fullscreen_visible;
g_object_set (priv->sep_item, "visible", show, NULL);
+ g_object_set (priv->exit_button, "visible", show, NULL);
g_object_set (priv->fixed_toolbar, "visible", show, NULL);
}