mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Limit RTL hack to classic engines (#12919)
It breaks with LuaTeX, is definitely not needed with XeTeX, and it is doubted whether it is needed at all (but this needs further testing).
This commit is contained in:
parent
8b1f1c29ff
commit
04bfbc0f7a
@ -1593,7 +1593,8 @@ void BufferParams::validate(LaTeXFeatures & features) const
|
||||
{
|
||||
features.require(documentClass().required());
|
||||
|
||||
if (columns > 1 && language->rightToLeft())
|
||||
if (columns > 1 && language->rightToLeft()
|
||||
&& !features.runparams().isFullUnicode())
|
||||
features.require("rtloutputdblcol");
|
||||
|
||||
if (output_changes) {
|
||||
|
Loading…
Reference in New Issue
Block a user