From 7562f4d9ff2e34c94b0376c10b8c72a2fc560d8c Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Fri, 06 Oct 2017 05:03:22 -0400 Subject: MqTabChrome: Make developer tools button functional --- (limited to 'src') diff --git a/src/tab-chrome.c b/src/tab-chrome.c index b298c2c..b92b17a 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -337,6 +337,15 @@ zoom_in_clicked_cb(GtkButton __attribute__((unused)) *button, } static void +developer_tools_clicked_cb(GtkButton __attribute__((unused)) *button, + MqTabChrome *chrome) +{ + webkit_web_inspector_show(webkit_web_view_get_inspector( + chrome->web_view)); + gtk_widget_hide(chrome->menu_popover); +} + +static void preferences_clicked_cb(GtkButton __attribute__((unused)) *button, MqTabChrome *chrome) { @@ -410,6 +419,7 @@ menu_button_clicked_cb(GtkToolButton *tool_button, CLICKED_CB(0, 0, zoom_out_clicked_cb); CLICKED_CB(0, 1, zoom_reset_clicked_cb); CLICKED_CB(0, 2, zoom_in_clicked_cb); + CLICKED_CB(4, 1, developer_tools_clicked_cb); CLICKED_CB(4, 2, preferences_clicked_cb); CLICKED_CB(5, 0, about_clicked_cb); CLICKED_CB(5, 2, quit_clicked_cb); -- cgit v0.9.1