diff options
author | Marco Pesenti Gritti <marco@it.gnome.org> | 2003-06-22 07:34:35 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <mpeseng@src.gnome.org> | 2003-06-22 07:34:35 +0800 |
commit | f4a52a4f5e21cc624fe0a9de2bca980732dd4563 (patch) | |
tree | a344825209cb644b02aa2be98c88e8d7927928be | |
parent | d1ea5948bd88351dbe86b511c291cafb9353999f (diff) | |
download | gsoc2013-epiphany-f4a52a4f5e21cc624fe0a9de2bca980732dd4563.tar gsoc2013-epiphany-f4a52a4f5e21cc624fe0a9de2bca980732dd4563.tar.gz gsoc2013-epiphany-f4a52a4f5e21cc624fe0a9de2bca980732dd4563.tar.bz2 gsoc2013-epiphany-f4a52a4f5e21cc624fe0a9de2bca980732dd4563.tar.lz gsoc2013-epiphany-f4a52a4f5e21cc624fe0a9de2bca980732dd4563.tar.xz gsoc2013-epiphany-f4a52a4f5e21cc624fe0a9de2bca980732dd4563.tar.zst gsoc2013-epiphany-f4a52a4f5e21cc624fe0a9de2bca980732dd4563.zip |
do not popup autocompletion when setting url from the combo list
2003-06-22 Marco Pesenti Gritti <marco@it.gnome.org>
* lib/widgets/ephy-location-entry.c: (insert_text_cb):
do not popup autocompletion when setting url from the combo list
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 2 |
2 files changed, 8 insertions, 0 deletions
@@ -7,6 +7,12 @@ 2003-06-22 Marco Pesenti Gritti <marco@it.gnome.org> + * lib/widgets/ephy-location-entry.c: (insert_text_cb): + + do not popup autocompletion when setting url from the combo list + +2003-06-22 Marco Pesenti Gritti <marco@it.gnome.org> + * src/ephy-window.c: (update_chromes_visibility), (ephy_window_fullscreen), (ephy_window_unfullscreen), (ephy_window_set_chrome): diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 1333bc5dd..7c79b9619 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -380,6 +380,8 @@ insert_text_cb (GtkWidget *editable, { EphyLocationEntryPrivate *p = w->priv; + if (p->going_to_site) return; + if (p->autocompletion_timeout != 0) { g_source_remove (p->autocompletion_timeout); |