diff options
-rw-r--r-- | src/window.c | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/window.c b/src/window.c index c1eaa4e..21717e0 100644 --- a/src/window.c +++ b/src/window.c @@ -36,17 +36,6 @@ tab_list_button_toggled_cb(GtkToggleButton *toggle_button, GtkWidget *tab_list) } } -static void -tab_list_back_button_clicked_cb(GtkButton __attribute__((unused)) *button, - GtkStack *stack) -{ - /* Use gtk_widget_show() and gtk_widget_hide() instead of - * gtk_stack_set_visible_child() so that the stack fits the size of only - * the visible child. */ - gtk_widget_show(gtk_stack_get_child_by_name(stack, "buttons")); - gtk_widget_hide(gtk_stack_get_child_by_name(stack, "tab_list")); -} - #define BUTTON_ROWS 2 #define BUTTON_COLS 4 #define NEW_BUTTON(Y, X, ICON, TOOLTIP) \ |