aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rwxr-xr-xsrc/ephy-toolbar.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/ephy-toolbar.c b/src/ephy-toolbar.c
index 41368a6c4..e9468e481 100755
--- a/src/ephy-toolbar.c
+++ b/src/ephy-toolbar.c
@@ -448,13 +448,10 @@ ephy_toolbar_activate_location (EphyToolbar *toolbar)
entry = GTK_WIDGET (proxies->data);
}
- if (entry == NULL)
- {
- /* happens when the user has removed the location entry from
- * the toolbars.
- */
- return;
- }
+ /* 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;
g_object_get (G_OBJECT (toolbar), "visible", &visible, NULL);
if (visible == FALSE)