summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPatrick McDermott <pj@pehjota.net>2017-09-25 00:28:03 (EDT)
committer Patrick McDermott <pj@pehjota.net>2017-09-25 00:28:03 (EDT)
commit0fb717de5996e2e2269768cffa2d001c981a844a (patch)
treea9fc5f69737feab19880aac147e93efa39941582
parent9ad9b3cdeeebd9a1d6c775e1cb7b67013e7e17fd (diff)
downloadmarquee-0fb717de5996e2e2269768cffa2d001c981a844a.zip
marquee-0fb717de5996e2e2269768cffa2d001c981a844a.tar.gz
marquee-0fb717de5996e2e2269768cffa2d001c981a844a.tar.bz2
mq_window_insert_tab(): Show tab
Only the first gtk_widget_show_all() call is needed, but let's make sure everything is shown.
-rw-r--r--src/window.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window.c b/src/window.c
index 8f81660..1de10df 100644
--- a/src/window.c
+++ b/src/window.c
@@ -111,4 +111,6 @@ mq_window_insert_tab(MqWindow *window, GtkWidget *tab_page,
tab_page, TRUE);
gtk_notebook_set_tab_detachable(GTK_NOTEBOOK(window->notebook),
tab_page, TRUE);
+ gtk_widget_show_all(tab_page);
+ gtk_widget_show_all(tab_label);
}