diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rwxr-xr-x | src/ephy-toolbar.c | 11 |
2 files changed, 13 insertions, 4 deletions
@@ -1,3 +1,9 @@ +2005-04-05 Christian Persch <chpe@cvs.gnome.org> + + * src/ephy-toolbar.c: (ephy_toolbar_activate_location): + + Fix toolbar activation. Fixes bug #172694. + 2005-04-02 Christian Persch <chpe@cvs.gnome.org> * 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) |