mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-18 21:45:24 +00:00
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:
parent
a7795cf303
commit
f9fdbb0ed2
@ -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");
|
||||
}
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user