diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/tab-chrome.c | 5 |
1 files changed, 5 insertions, 0 deletions
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 |