]> git.lyx.org Git - features.git/commitdiff
Fix #7963, fullscreen corner case for tabbar visibility.
authorPavel Sanda <sanda@lyx.org>
Tue, 3 Jan 2012 14:21:48 +0000 (14:21 +0000)
committerPavel Sanda <sanda@lyx.org>
Tue, 3 Jan 2012 14:21:48 +0000 (14:21 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40560 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiWorkArea.cpp

index e0c651f17a05256fb504c637a16e9eeef2cedc29..e3bb5260a854593d5a8b9eb89d0bb3dea42d0008 100644 (file)
@@ -1576,6 +1576,8 @@ void TabWorkArea::setFullScreen(bool full_screen)
 
        if (lyxrc.full_screen_tabbar)
                showBar(!full_screen && count() > 1);
+       else
+               showBar(count() > 1);
 }