From 2fa97e782d609657fc4855c9daa77c2e2ac790fd Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 16 Sep 2017 23:24:24 -0400 Subject: navigation_toolbar_new(): Set URI bar icon and progress fraction --- (limited to 'src') 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); -- cgit v0.9.1