diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2011-03-20 02:03:12 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2011-03-20 02:03:12 +0100 |
commit | 6d748f9bd906ecd9e2d9a55c2efa3c8794a4bbf7 (patch) | |
tree | 7922bdc02eb8c9cf4050d71c6608e1399e02ca8f | |
parent | Check if mainWindow and currentab really exist before using in bookmarksprov... (diff) | |
download | rekonq-6d748f9bd906ecd9e2d9a55c2efa3c8794a4bbf7.tar.xz |
Really hiding the tabbar...
-rw-r--r-- | src/mainwindow.cpp | 4 |
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) |