diff options
author | Diego Escalante Urrelo <diegoe@gnome.org> | 2007-08-19 15:43:17 +0800 |
---|---|---|
committer | Diego Escalante Urrelo <diegoe@src.gnome.org> | 2007-08-19 15:43:17 +0800 |
commit | e7da3e158d89997931664cdc4271bd2ac988cef2 (patch) | |
tree | 7a236e4a5b099e86d2966da4ba85da6c94e68eee /lib | |
parent | dd3501d4650524fa9ec1c05349c2bdf225d35be7 (diff) | |
download | gsoc2013-epiphany-e7da3e158d89997931664cdc4271bd2ac988cef2.tar gsoc2013-epiphany-e7da3e158d89997931664cdc4271bd2ac988cef2.tar.gz gsoc2013-epiphany-e7da3e158d89997931664cdc4271bd2ac988cef2.tar.bz2 gsoc2013-epiphany-e7da3e158d89997931664cdc4271bd2ac988cef2.tar.lz gsoc2013-epiphany-e7da3e158d89997931664cdc4271bd2ac988cef2.tar.xz gsoc2013-epiphany-e7da3e158d89997931664cdc4271bd2ac988cef2.tar.zst gsoc2013-epiphany-e7da3e158d89997931664cdc4271bd2ac988cef2.zip |
Make cursor be at the end of the URL when selecting entries from the
2007-08-19 Diego Escalante Urrelo <diegoe@gnome.org>
* lib/widgets/ephy-location-entry.c:
Make cursor be at the end of the URL when selecting entries from the
completion popup. Fixes bug #466344.
svn path=/trunk/; revision=7283
Diffstat (limited to 'lib')
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c index 1a239aff7..2cb5eb8e8 100644 --- a/lib/widgets/ephy-location-entry.c +++ b/lib/widgets/ephy-location-entry.c @@ -990,6 +990,7 @@ cursor_on_match_cb (GtkEntryCompletion *completion, entry = gtk_entry_completion_get_entry (completion); gtk_entry_set_text (GTK_ENTRY (entry), item); + gtk_editable_set_position (GTK_EDITABLE (entry), -1); g_free (item); |