From 2299030deb90a475a8d24b461957830332356b51 Mon Sep 17 00:00:00 2001 From: fourtf Date: Mon, 4 Jun 2018 12:54:09 +0200 Subject: [PATCH] fixed tabs sometimes not showing --- src/widgets/notebook.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/widgets/notebook.cpp b/src/widgets/notebook.cpp index f83aa38d..1f425d32 100644 --- a/src/widgets/notebook.cpp +++ b/src/widgets/notebook.cpp @@ -60,6 +60,8 @@ NotebookTab *Notebook::addPage(QWidget *page, QString title, bool select) this->performLayout(); + tab->show(); + return tab; }