From: Pavel Sanda Date: Tue, 3 Jan 2012 14:21:48 +0000 (+0000) Subject: Fix #7963, fullscreen corner case for tabbar visibility. X-Git-Tag: 2.1.0beta1~2158 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9154bc99e3aa6d0e888048a88691a7ffb3f56d7c;p=features.git 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 --- diff --git a/src/frontends/qt4/GuiWorkArea.cpp b/src/frontends/qt4/GuiWorkArea.cpp index e0c651f17a..e3bb5260a8 100644 --- a/src/frontends/qt4/GuiWorkArea.cpp +++ b/src/frontends/qt4/GuiWorkArea.cpp @@ -1576,6 +1576,8 @@ void TabWorkArea::setFullScreen(bool full_screen) if (lyxrc.full_screen_tabbar) showBar(!full_screen && count() > 1); + else + showBar(count() > 1); }