From b76f7e59e6fbee2cd6fdcbb9eb70268a00d580c7 Mon Sep 17 00:00:00 2001 From: Andrea Diamantini Date: Sun, 9 Jan 2011 17:55:04 +0100 Subject: Fix the always opened tabbar feature. Felix Rohrbach's fix Thanks :) PS: plus a correction in previous UI by me --- src/mainview.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/mainview.cpp') diff --git a/src/mainview.cpp b/src/mainview.cpp index 42a76758..cbe862fb 100644 --- a/src/mainview.cpp +++ b/src/mainview.cpp @@ -179,11 +179,15 @@ void MainView::updateTabBar() if (ReKonfig::alwaysShowTabBar() || tabBar()->count() > 1) { if (tabBar()->isHidden()) + { tabBar()->show(); + m_addTabButton->show(); + } } else { tabBar()->hide(); + m_addTabButton->hide(); } updateTabButtonPosition(); -- cgit v1.2.1