From f0d15bf49fff436cd4e5416fb37b9a5bfe98f8b8 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 01 Oct 2017 05:35:20 -0400 Subject: MqTabChrome: Make about button functional --- 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. */ -- cgit v0.9.1