mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Amend 9e645a5cfc
Only show "System Default" if auto-open is available for the current format.
This commit is contained in:
parent
9e645a5cfc
commit
a8947aaad8
@ -2325,7 +2325,8 @@ void PrefFileformats::updateViewers()
|
||||
viewerCO->blockSignals(true);
|
||||
viewerCO->clear();
|
||||
viewerCO->addItem(qt_("None"), QString());
|
||||
viewerCO->addItem(qt_("System Default"), QString("auto"));
|
||||
if (os::canAutoOpenFile(f.extension(), os::VIEW))
|
||||
viewerCO->addItem(qt_("System Default"), QString("auto"));
|
||||
updateComboBox(viewer_alternatives, f.name(), viewerCO);
|
||||
viewerCO->addItem(qt_("Custom"), QString("custom viewer"));
|
||||
viewerCO->blockSignals(false);
|
||||
@ -2349,7 +2350,8 @@ void PrefFileformats::updateEditors()
|
||||
editorCO->blockSignals(true);
|
||||
editorCO->clear();
|
||||
editorCO->addItem(qt_("None"), QString());
|
||||
editorCO->addItem(qt_("System Default"), QString("auto"));
|
||||
if (os::canAutoOpenFile(f.extension(), os::EDIT))
|
||||
editorCO->addItem(qt_("System Default"), QString("auto"));
|
||||
updateComboBox(editor_alternatives, f.name(), editorCO);
|
||||
editorCO->addItem(qt_("Custom"), QString("custom editor"));
|
||||
editorCO->blockSignals(false);
|
||||
|
Loading…
Reference in New Issue
Block a user