From: Juergen Spitzmueller Date: Fri, 15 Nov 2013 07:56:13 +0000 (+0100) Subject: List all exportable document formats in the Save As dialog, not only the selection... X-Git-Tag: 2.1.0rc1~421 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=ab96df492a0a359797462fe109d009e54b864a4c;p=features.git List all exportable document formats in the Save As dialog, not only the selection from the export menu --- diff --git a/src/frontends/qt4/GuiView.cpp b/src/frontends/qt4/GuiView.cpp index 895a9e1494..1bcb99ea68 100644 --- a/src/frontends/qt4/GuiView.cpp +++ b/src/frontends/qt4/GuiView.cpp @@ -2389,7 +2389,7 @@ bool GuiView::exportBufferAs(Buffer & b) Formats::const_iterator it = formats.begin(); vector export_formats; for (; it != formats.end(); ++it) - if (it->documentFormat() && it->inExportMenu()) + if (it->documentFormat()) export_formats.push_back(&(*it)); PrettyNameComparator cmp; sort(export_formats.begin(), export_formats.end(), cmp);