Fix bug #5247: physical paper size settings are not honoured by pdflatex export

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_6_X@34455 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Enrico Forestieri 2010-05-22 17:31:16 +00:00
parent a7795cf303
commit f9fdbb0ed2
2 changed files with 4 additions and 1 deletions

View File

@ -1228,7 +1228,8 @@ bool BufferParams::writeLaTeX(odocstream & os, LaTeXFeatures & features,
os << ",columnsep=" << from_ascii(Length(columnsep).asLatexString());
os << "}\n";
texrow.newline();
} else if (orientation == ORIENTATION_LANDSCAPE) {
} else if (orientation == ORIENTATION_LANDSCAPE
|| papersize != PAPER_DEFAULT) {
features.require("papersize");
}

View File

@ -57,6 +57,8 @@ What's new
- Safer creation of backup files on ext4 (part of bug 6587).
- Honour physical paper size settings on output (bug 5247).
* USER INTERFACE