diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-04-05 19:29:18 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-04-05 19:29:18 +0800 |
commit | a7720cd6f5fee4f6add1a5808b7eacf7d23660c5 (patch) | |
tree | 38e09502879b3f5d8c40112ec4d7cc756c6a1c6a | |
parent | bc55d57c87eee2c16ad8fdca2a9a73dedd6dbefe (diff) | |
download | gsoc2013-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-- | 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) |