mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 18:08:10 +00:00
Exclude insets without output from fontswitch_insets
This commit is contained in:
parent
f41ca959fd
commit
95fed10131
@ -2591,7 +2591,8 @@ void Paragraph::latex(BufferParams const & bparams,
|
||||
c == META_INSET
|
||||
&& getInset(i)
|
||||
&& getInset(i)->allowMultiPar()
|
||||
&& getInset(i)->lyxCode() != ERT_CODE;
|
||||
&& getInset(i)->lyxCode() != ERT_CODE
|
||||
&& getInset(i)->producesOutput();
|
||||
|
||||
bool closeLanguage = false;
|
||||
bool lang_switched_at_inset = false;
|
||||
|
Loading…
Reference in New Issue
Block a user