mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Viewer and editor selections were not being saved.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@31651 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
8e02385cea
commit
3d19a3a820
@ -1887,13 +1887,19 @@ void PrefFileformats::updateEditors()
|
||||
|
||||
void PrefFileformats::on_viewerCO_currentIndexChanged(int i)
|
||||
{
|
||||
viewerED->setEnabled(viewerCO->itemData(i).toString() == "custom viewer");
|
||||
bool const custom = viewerCO->itemData(i).toString() == "custom viewer";
|
||||
viewerED->setEnabled(custom);
|
||||
if (!custom)
|
||||
currentFormat().setViewer(fromqstr(viewerCO->itemData(i).toString()));
|
||||
}
|
||||
|
||||
|
||||
void PrefFileformats::on_editorCO_currentIndexChanged(int i)
|
||||
{
|
||||
editorED->setEnabled(editorCO->itemData(i).toString() == "custom editor");
|
||||
bool const custom = editorCO->itemData(i).toString() == "custom viewer";
|
||||
editorED->setEnabled(custom);
|
||||
if (!custom)
|
||||
currentFormat().setViewer(fromqstr(editorCO->itemData(i).toString()));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user