[epiphany] ephy-toolbar: fix leave-fullscreen item visibility



commit 7f5202b49a8015bc09faa6e10c9f78c3e97ab83b
Author: Diego Escalante Urrelo <descalante igalia com>
Date:   Sun Feb 28 22:05:43 2010 -0500

    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

 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 a721831..9bb1e61 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);
 }
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]