aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-04-05 19:29:18 +0800
committerChristian Persch <chpe@src.gnome.org>2005-04-05 19:29:18 +0800
commita7720cd6f5fee4f6add1a5808b7eacf7d23660c5 (patch)
tree38e09502879b3f5d8c40112ec4d7cc756c6a1c6a
parentbc55d57c87eee2c16ad8fdca2a9a73dedd6dbefe (diff)
downloadgsoc2013-epiphany-a7720cd6f5fee4f6add1a5808b7eacf7d23660c5.tar
gsoc2013-epiphany-a7720cd6f5fee4f6add1a5808b7eacf7d23660c5.tar.gz
gsoc2013-epiphany-a7720cd6f5fee4f6add1a5808b7eacf7d23660c5.tar.bz2
gsoc2013-epiphany-a7720cd6f5fee4f6add1a5808b7eacf7d23660c5.tar.lz
gsoc2013-epiphany-a7720cd6f5fee4f6add1a5808b7eacf7d23660c5.tar.xz
gsoc2013-epiphany-a7720cd6f5fee4f6add1a5808b7eacf7d23660c5.tar.zst
gsoc2013-epiphany-a7720cd6f5fee4f6add1a5808b7eacf7d23660c5.zip
Fix toolbar activation. Fixes bug #172694.
2005-04-05 Christian Persch <chpe@cvs.gnome.org> * src/ephy-toolbar.c: (ephy_toolbar_activate_location): Fix toolbar activation. Fixes bug #172694.
-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)