Fix #7963, fullscreen corner case for tabbar visibility.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40560 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2012-01-03 14:21:48 +00:00
parent 88dd0d1501
commit 9154bc99e3

View 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);
}