mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
Also pay attention to OutputParams::free_spacing.
This commit is contained in:
parent
6135824f40
commit
ba8cf1a50b
@ -3409,7 +3409,7 @@ docstring Paragraph::simpleLyXHTMLOnePar(Buffer const & buf,
|
||||
} else {
|
||||
char_type c = getUChar(buf.masterBuffer()->params(),
|
||||
runparams, i);
|
||||
if (c == ' ' && style.free_spacing)
|
||||
if (c == ' ' && (style.free_spacing || runparams.free_spacing))
|
||||
xs << XHTMLStream::ESCAPE_NONE << " ";
|
||||
else
|
||||
xs << c;
|
||||
|
Loading…
Reference in New Issue
Block a user