diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2003-09-20 19:50:54 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2003-09-20 19:50:54 +0800 |
commit | 95f71124ff3c92d1b7384c0a96dec474e54335e9 (patch) | |
tree | 08df4cfeffe89f485c3ce48584e2fb38b57cf768 | |
parent | 7b653b5dce039fe86e9646e0d85aa647f3cf1dc0 (diff) | |
download | gsoc2013-epiphany-95f71124ff3c92d1b7384c0a96dec474e54335e9.tar gsoc2013-epiphany-95f71124ff3c92d1b7384c0a96dec474e54335e9.tar.gz gsoc2013-epiphany-95f71124ff3c92d1b7384c0a96dec474e54335e9.tar.bz2 gsoc2013-epiphany-95f71124ff3c92d1b7384c0a96dec474e54335e9.tar.lz gsoc2013-epiphany-95f71124ff3c92d1b7384c0a96dec474e54335e9.tar.xz gsoc2013-epiphany-95f71124ff3c92d1b7384c0a96dec474e54335e9.tar.zst gsoc2013-epiphany-95f71124ff3c92d1b7384c0a96dec474e54335e9.zip |
Initialize completion visibility flag
2003-09-20 Marco Pesenti Gritti <marco@gnome.org>
* lib/widgets/ephy-location-entry.c: (ephy_location_entry_init):
Initialize completion visibility flag
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 1 |
2 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2003-09-20 Marco Pesenti Gritti <marco@gnome.org> + + * lib/widgets/ephy-location-entry.c: (ephy_location_entry_init): + + Initialize completion visibility flag + 2003-09-20 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-embed-utils.c: (ephy_embed_utils_save): diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 78cbc94a7..89422cbca 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -220,6 +220,7 @@ ephy_location_entry_init (EphyLocationEntry *w) p->before_completion = NULL; p->user_changed = TRUE; p->autocompletion_key = NULL; + p->autocompletion_window_visible = FALSE; ephy_location_entry_construct_contents (w); |