]> git.lyx.org Git - features.git/commitdiff
List all exportable document formats in the Save As dialog, not only the selection...
authorJuergen Spitzmueller <spitz@lyx.org>
Fri, 15 Nov 2013 07:56:13 +0000 (08:56 +0100)
committerJuergen Spitzmueller <spitz@lyx.org>
Fri, 15 Nov 2013 07:56:13 +0000 (08:56 +0100)
src/frontends/qt4/GuiView.cpp

index 895a9e14948e5f2998cecdfb1a84a9185161d131..1bcb99ea68dc6e72fa14a780521b3a0f3a7455b5 100644 (file)
@@ -2389,7 +2389,7 @@ bool GuiView::exportBufferAs(Buffer & b)
        Formats::const_iterator it = formats.begin();
        vector<Format const *> 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);