aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@it.gnome.org>2003-06-20 20:39:26 +0800
committerMarco Pesenti Gritti <mpeseng@src.gnome.org>2003-06-20 20:39:26 +0800
commit476c242753cd43a612cd9eea3166c77d822f7c80 (patch)
tree81e71105a66296918da1970c0ca7b7cfb57ce897 /lib
parent8b66172512d6bfbdbb783613ed9b8e6cc057e86a (diff)
downloadgsoc2013-epiphany-476c242753cd43a612cd9eea3166c77d822f7c80.tar
gsoc2013-epiphany-476c242753cd43a612cd9eea3166c77d822f7c80.tar.gz
gsoc2013-epiphany-476c242753cd43a612cd9eea3166c77d822f7c80.tar.bz2
gsoc2013-epiphany-476c242753cd43a612cd9eea3166c77d822f7c80.tar.lz
gsoc2013-epiphany-476c242753cd43a612cd9eea3166c77d822f7c80.tar.xz
gsoc2013-epiphany-476c242753cd43a612cd9eea3166c77d822f7c80.tar.zst
gsoc2013-epiphany-476c242753cd43a612cd9eea3166c77d822f7c80.zip
Ever put cursor at the end of the text when selecting autocompletion
2003-06-20 Marco Pesenti Gritti <marco@it.gnome.org> * lib/widgets/ephy-location-entry.c: (ephy_location_entry_autocompletion_window_url_selected_cb): Ever put cursor at the end of the text when selecting autocompletion items. * src/pdm-dialog.c: (cookies_treeview_selection_changed_cb), (action_treeview_selection_changed_cb): Do not allow to open properties of multiple cookies. (insensitive)
Diffstat (limited to 'lib')
-rw-r--r--lib/widgets/ephy-location-entry.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/widgets/ephy-location-entry.c b/lib/widgets/ephy-location-entry.c
index 9cd984b80..1333bc5dd 100644
--- a/lib/widgets/ephy-location-entry.c
+++ b/lib/widgets/ephy-location-entry.c
@@ -525,8 +525,9 @@ ephy_location_entry_autocompletion_window_url_selected_cb (EphyAutocompletionWin
else
{
ephy_location_entry_set_location (w, w->priv->before_completion);
- gtk_editable_set_position (GTK_EDITABLE (w->priv->entry), -1);
}
+
+ gtk_editable_set_position (GTK_EDITABLE (w->priv->entry), -1);
}
void