diff options
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | lib/widgets/ephy-location-entry.c | 1 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,10 @@ +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. + 2007-08-16 Xan Lopez <xan@gnome.org> * embed/webkit/webkit-embed.cpp (impl_reload): implement reload. 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); |