diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tab-chrome.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c index 39cba47..9c67931 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -57,6 +57,9 @@ navigation_toolbar_new(MqTabChrome *chrome, gchar *uri) 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); |