backport bugfix for 5274

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@27464 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-11-15 17:10:35 +00:00
parent 4ece71f68d
commit 4c973bb8d4
2 changed files with 8 additions and 0 deletions

View File

@ -1974,6 +1974,11 @@ bool GuiView::dispatch(FuncRequest const & cmd)
data = bv->cursor().getEncoding()->name();
if (!data.empty())
showDialog("symbols", data);
// bug 5274
} else if (name == "prefs" && isFullScreen()) {
FuncRequest fr(LFUN_INSET_INSERT, "fullscreen");
lfunUiToggle(fr);
showDialog("prefs", data);
} else
showDialog(name, data);
break;
@ -2142,6 +2147,8 @@ void GuiView::toggleFullScreen()
menuBar()->show();
statusBar()->show();
} else {
// bug 5274
hideDialogs("prefs", 0);
for (int i = 0; i != d.splitter_->count(); ++i)
d.tabWorkArea(i)->setFullScreen(true);
#if QT_VERSION >= 0x040300

View File

@ -35,6 +35,7 @@ What's new
* USER INTERFACE
- Fix Preferences dialog in fullscreen mode (bug 5274).
* WINDOWS INSTALLER