From fac6c0ce9820aaf65b0baf1d275bf265a96d842f Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sat, 30 Sep 2017 14:04:07 -0400 Subject: MqTabChrome: Set back/forward button sensitivity on URI change --- (limited to 'src/tab-chrome.c') diff --git a/src/tab-chrome.c b/src/tab-chrome.c index 6a4c77c..548cd78 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -671,6 +671,11 @@ uri_cb(WebKitWebView *web_view, GParamSpec __attribute__((unused)) *paramspec, gtk_entry_set_text(GTK_ENTRY(chrome->uri_entry), uri); g_free(uri); gtk_entry_set_attributes(GTK_ENTRY(chrome->uri_entry), NULL); + + gtk_widget_set_sensitive(GTK_WIDGET(chrome->back_button), + webkit_web_view_can_go_back(web_view)); + gtk_widget_set_sensitive(GTK_WIDGET(chrome->forward_button), + webkit_web_view_can_go_forward(web_view)); } static void -- cgit v0.9.1