diff options
-rw-r--r-- | src/tab-chrome.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/tab-chrome.c b/src/tab-chrome.c index c57ca6a..42e2a0c 100644 --- a/src/tab-chrome.c +++ b/src/tab-chrome.c @@ -337,6 +337,12 @@ zoom_in_clicked_cb(GtkButton __attribute__((unused)) *button, } static void +about_clicked_cb(GtkButton __attribute__((unused)) *button, MqTabChrome *chrome) +{ + mq_tab_new("about:", chrome->tab); +} + +static void quit_clicked_cb(GtkButton __attribute__((unused)) *button, MqTabChrome __attribute__((unused)) *chrome) { @@ -392,6 +398,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(5, 0, about_clicked_cb); CLICKED_CB(5, 2, quit_clicked_cb); /* Set up the popover. */ |