diff options
-rw-r--r-- | src/tab-chrome.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c index bf39726..110d0ff 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -217,15 +217,15 @@ loading_cb(WebKitWebView *web_view, GParamSpec __attribute__((unused)) *paramspec, MqTabChrome *chrome) { if (webkit_web_view_is_loading(web_view)) { - gtk_tool_button_set_icon_name( + gtk_tool_button_set_icon_widget( GTK_TOOL_BUTTON(chrome->stop_reload_button), - "process-stop"); + chrome->stop_icon); gtk_tool_button_set_label( GTK_TOOL_BUTTON(chrome->stop_reload_button), "Stop"); } else { - gtk_tool_button_set_icon_name( + gtk_tool_button_set_icon_widget( GTK_TOOL_BUTTON(chrome->stop_reload_button), - "view-refresh"); + chrome->reload_icon); gtk_tool_button_set_label( GTK_TOOL_BUTTON(chrome->stop_reload_button), "Reload"); } |