From: Daniel Ramoeller Date: Sun, 7 Aug 2022 15:57:39 +0000 (+0200) Subject: "System Default" viewer/editor option X-Git-Tag: 2.4-beta2~527 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=9e645a5cfc9d6c3e66d;p=lyx.git "System Default" viewer/editor option Fix for bug #12571. More user friendly way to set the system default application aka "auto" option. --- diff --git a/src/frontends/qt/GuiPrefs.cpp b/src/frontends/qt/GuiPrefs.cpp index 31da12936f..e607471299 100644 --- a/src/frontends/qt/GuiPrefs.cpp +++ b/src/frontends/qt/GuiPrefs.cpp @@ -2325,6 +2325,7 @@ void PrefFileformats::updateViewers() viewerCO->blockSignals(true); viewerCO->clear(); viewerCO->addItem(qt_("None"), QString()); + viewerCO->addItem(qt_("System Default"), QString("auto")); updateComboBox(viewer_alternatives, f.name(), viewerCO); viewerCO->addItem(qt_("Custom"), QString("custom viewer")); viewerCO->blockSignals(false); @@ -2348,6 +2349,7 @@ void PrefFileformats::updateEditors() editorCO->blockSignals(true); editorCO->clear(); editorCO->addItem(qt_("None"), QString()); + editorCO->addItem(qt_("System Default"), QString("auto")); updateComboBox(editor_alternatives, f.name(), editorCO); editorCO->addItem(qt_("Custom"), QString("custom editor")); editorCO->blockSignals(false);