Fix fullscreen & settings dialog. Very annoying one.

http://bugzilla.lyx.org/show_bug.cgi?id=5274


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27460 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Pavel Sanda 2008-11-15 16:33:02 +00:00
parent f9f5c3baa5
commit 25079068ea

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