diff options
author | Diego Escalante Urrelo <descalante@igalia.com> | 2010-03-01 11:05:43 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <descalante@igalia.com> | 2010-04-14 04:47:56 +0800 |
commit | 7f5202b49a8015bc09faa6e10c9f78c3e97ab83b (patch) | |
tree | 43b9942c22b4e07d4b6542929816eebcaa76b68d /src | |
parent | 55d0eb3dcb478a07e3209bd5dd192d9a52e8aa8f (diff) | |
download | gsoc2013-epiphany-7f5202b49a8015bc09faa6e10c9f78c3e97ab83b.tar.gz 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.c | 1 |
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); } |