mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
* src/frontends/controllers/ControlSendto.cpp:
- add missing pdflatex format. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_5_X@22345 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
bc45de19e6
commit
714e9270a5
@ -63,8 +63,10 @@ vector<Format const *> const ControlSendto::allFormats() const
|
||||
|
||||
Buffer const & buffer = kernel().buffer();
|
||||
|
||||
if (buffer.isLatex())
|
||||
if (buffer.isLatex()) {
|
||||
exports.push_back("latex");
|
||||
exports.push_back("pdflatex");
|
||||
}
|
||||
else if (buffer.isDocBook())
|
||||
exports.push_back("docbook");
|
||||
else if (buffer.isLiterate())
|
||||
|
@ -53,7 +53,6 @@ What's new
|
||||
these things are now also included in the Express edition.
|
||||
|
||||
|
||||
|
||||
** Bug fixes:
|
||||
*************
|
||||
|
||||
@ -93,6 +92,8 @@ What's new
|
||||
|
||||
- Fix rows alignment in the gather environment (part of bug 1497).
|
||||
|
||||
- Add missing pdflatex format to Export->Custom.
|
||||
|
||||
|
||||
* DOCUMENTATION
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user