summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/tab-chrome.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c
index 8a992cc..43aaac2 100644
--- a/src/tab-chrome.c
+++ b/src/tab-chrome.c
@@ -53,13 +53,13 @@ navigation_toolbar_new(MqTabChrome *chrome, gchar *uri)
gtk_entry_set_text(GTK_ENTRY(chrome->uri_entry), uri);
gtk_entry_set_placeholder_text(GTK_ENTRY(chrome->uri_entry),
"URI...");
+ gtk_entry_set_icon_from_icon_name(GTK_ENTRY(chrome->uri_entry),
+ GTK_ENTRY_ICON_PRIMARY, "text-x-generic");
+ gtk_entry_set_progress_fraction(GTK_ENTRY(chrome->uri_entry), 0.0);
gtk_container_add(GTK_CONTAINER(uri_toolitem),
chrome->uri_entry);
gtk_tool_item_set_expand(uri_toolitem, TRUE);
gtk_toolbar_insert(navigation_toolbar, uri_toolitem, -1);
- gtk_entry_set_icon_from_icon_name(GTK_ENTRY(chrome->uri_entry),
- GTK_ENTRY_ICON_PRIMARY, "text-x-generic");
- gtk_entry_set_progress_fraction(GTK_ENTRY(chrome->uri_entry), 0.0);
gtk_widget_set_hexpand(GTK_WIDGET(navigation_toolbar), TRUE);