aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rwxr-xr-xsrc/ephy-toolbar.c11
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 <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)