Set caret position in URL bar to the end when core updates it

svn path=/trunk/netsurf/; revision=2899
This commit is contained in:
Rob Kendrick 2006-08-28 20:36:01 +00:00
parent 82cba2801b
commit fa24f64b60

View File

@ -1048,6 +1048,7 @@ void gui_window_hide_pointer(struct gui_window *g)
void gui_window_set_url(struct gui_window *g, const char *url)
{
gtk_entry_set_text(g->url_bar, url);
gtk_editable_set_position(GTK_EDITABLE(g->url_bar), -1);
}
void gui_window_start_throbber(struct gui_window* g)