mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-24 13:48:59 +00:00
Fix bug #7543: Default Output in Preferences
does not contain all the possible options. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_2_0_X@38831 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d9dd377635
commit
a7d8f6b4bf
@ -1902,7 +1902,9 @@ void PrefFileformats::updateView()
|
||||
formatsCB->addItem(qt_(cit->prettyname()),
|
||||
QVariant(form_->formats().getNumber(cit->name())));
|
||||
if (form_->converters().isReachable("latex", cit->name())
|
||||
|| form_->converters().isReachable("pdflatex", cit->name()))
|
||||
|| form_->converters().isReachable("pdflatex", cit->name())
|
||||
|| form_->converters().isReachable("luatex", cit->name())
|
||||
|| form_->converters().isReachable("xetex", cit->name()))
|
||||
defaultFormatCB->addItem(qt_(cit->prettyname()),
|
||||
QVariant(toqstr(cit->name())));
|
||||
}
|
||||
|
@ -116,6 +116,9 @@ What's new
|
||||
- Fix On-the-fly spellchecker jumps to next pattern match when replacing a
|
||||
misspelled word with a suggested one from context menu (bug 7564).
|
||||
|
||||
- Add XeTeX/LuaTeX and derived formats to the Default Output list
|
||||
in the preferences dialog (bug 7543).
|
||||
|
||||
|
||||
* DOCUMENTATION AND LOCALIZATION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user