diff options
Diffstat (limited to 'src/window.c')
-rw-r--r-- | src/window.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c index 6a44ae1..15230ba 100644 --- a/src/window.c +++ b/src/window.c @@ -121,6 +121,13 @@ mq_window_insert_tab(MqWindow *window, GtkWidget *tab_page, gtk_widget_show_all(tab_label); } +void +mq_window_set_current_tab(MqWindow *window, guint tab) +{ + window->current_tab = tab; + gtk_notebook_set_current_page(GTK_NOTEBOOK(window->notebook), tab - 1); +} + guint mq_window_get_current_tab(MqWindow *window) { |