From a7720cd6f5fee4f6add1a5808b7eacf7d23660c5 Mon Sep 17 00:00:00 2001 From: Christian Persch Date: Tue, 5 Apr 2005 11:29:18 +0000 Subject: Fix toolbar activation. Fixes bug #172694. 2005-04-05 Christian Persch * src/ephy-toolbar.c: (ephy_toolbar_activate_location): Fix toolbar activation. Fixes bug #172694. --- ChangeLog | 6 ++++++ src/ephy-toolbar.c | 11 +++++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8e5b04f25..d7fb083b1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2005-04-05 Christian Persch + + * src/ephy-toolbar.c: (ephy_toolbar_activate_location): + + Fix toolbar activation. Fixes bug #172694. + 2005-04-02 Christian Persch * configure.ac: diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c index e9468e481..41368a6c4 100755 --- a/src/ephy-toolbar.c +++ b/src/ephy-toolbar.c @@ -448,10 +448,13 @@ ephy_toolbar_activate_location (EphyToolbar *toolbar) entry = GTK_WIDGET (proxies->data); } - /* happens when the user has removed the location entry from - * the toolbars, or when it's overflown - */ - if (entry == NULL || !GTK_WIDGET_REALIZED (entry)) return; + if (entry == NULL) + { + /* happens when the user has removed the location entry from + * the toolbars. + */ + return; + } g_object_get (G_OBJECT (toolbar), "visible", &visible, NULL); if (visible == FALSE) -- cgit v1.2.3