summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2011-03-20 02:03:12 +0100
committerAndrea Diamantini <adjam7@gmail.com>2011-03-20 02:03:12 +0100
commit6d748f9bd906ecd9e2d9a55c2efa3c8794a4bbf7 (patch)
tree7922bdc02eb8c9cf4050d71c6608e1399e02ca8f
parentCheck if mainWindow and currentab really exist before using in bookmarksprov... (diff)
downloadrekonq-6d748f9bd906ecd9e2d9a55c2efa3c8794a4bbf7.tar.xz
Really hiding the tabbar...
-rw-r--r--src/mainwindow.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index b3c03ce6..20b978f5 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -901,7 +901,7 @@ void MainWindow::setWidgetsVisible(bool makeVisible)
}
bookBar->hide();
- m_view->setTabBarHidden(true);
+ m_view->tabBar()->hide();
m_historyPanel->hide();
m_bookmarksPanel->hide();
@@ -912,7 +912,7 @@ void MainWindow::setWidgetsVisible(bool makeVisible)
{
// show main toolbar
mainBar->show();
- m_view->setTabBarHidden(false);
+ m_view->tabBar()->show();
// restore state of windowed mode
if (!bookmarksToolBarFlag)