diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2003-10-21 05:51:50 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2003-10-21 05:51:50 +0800 |
commit | b3a4451adf29d6a9ccf3434187dd2856e3242319 (patch) | |
tree | df8526bc54b2edff60bc0af538e827dd2824f038 | |
parent | baad2fd7b97c659b7027523f8a39b0a6b00ccd6d (diff) | |
download | gsoc2013-epiphany-b3a4451adf29d6a9ccf3434187dd2856e3242319.tar gsoc2013-epiphany-b3a4451adf29d6a9ccf3434187dd2856e3242319.tar.gz gsoc2013-epiphany-b3a4451adf29d6a9ccf3434187dd2856e3242319.tar.bz2 gsoc2013-epiphany-b3a4451adf29d6a9ccf3434187dd2856e3242319.tar.lz gsoc2013-epiphany-b3a4451adf29d6a9ccf3434187dd2856e3242319.tar.xz gsoc2013-epiphany-b3a4451adf29d6a9ccf3434187dd2856e3242319.tar.zst gsoc2013-epiphany-b3a4451adf29d6a9ccf3434187dd2856e3242319.zip |
Double-check visibility of autocompletion window. Hopeflly fixes bug
2003-10-20 Christian Persch <chpe@cvs.gnome.org>
* lib/widgets/ephy-location-entry.c:
(ephy_location_entry_autocompletion_sources_changed_cb):
Double-check visibility of autocompletion window. Hopeflly
fixes bug #121678 for good.
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 3 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,11 @@ +2003-10-20 Christian Persch <chpe@cvs.gnome.org> + + * lib/widgets/ephy-location-entry.c: + (ephy_location_entry_autocompletion_sources_changed_cb): + + Double-check visibility of autocompletion window. Hopeflly + fixes bug #121678 for good. + 2003-10-17 Marco Pesenti Gritti <marco@gnome.org> * src/bookmarks/ephy-bookmarks-editor.c: diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 89422cbca..52d69300f 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -559,7 +559,8 @@ ephy_location_entry_autocompletion_sources_changed_cb (EphyAutocompletion *aw, LOG ("in ephy_location_entry_autocompletion_sources_changed_cb") if (p->show_alternatives_timeout == 0 - && p->autocompletion_window_visible) + && p->autocompletion_window_visible + && GTK_WIDGET_VISIBLE (p->autocompletion_window)) { p->show_alternatives_timeout = g_timeout_add (SHOW_ALTERNATIVES_DELAY, |