mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
avoid adding redundant preamble to double column hebrew documents (#12919)
This commit is contained in:
parent
d5b6cd3486
commit
51453c61d6
@ -1594,7 +1594,8 @@ void BufferParams::validate(LaTeXFeatures & features) const
|
||||
features.require(documentClass().required());
|
||||
|
||||
if (columns > 1 && language->rightToLeft()
|
||||
&& !features.runparams().isFullUnicode())
|
||||
&& !features.runparams().isFullUnicode()
|
||||
&& language->babel() != "hebrew")
|
||||
features.require("rtloutputdblcol");
|
||||
|
||||
if (output_changes) {
|
||||
|
Loading…
Reference in New Issue
Block a user