mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Prevent multiple insertion of language switch at document body
This commit is contained in:
parent
ef9e73d7fe
commit
f320ccdfc6
@ -747,7 +747,7 @@ def revert_language(document, lyxname, babelname, polyglossianame):
|
||||
# With babel, we need to add the language options
|
||||
if with_babel and (primary or secondary):
|
||||
insert_document_option(document, babelname)
|
||||
if secondary:
|
||||
if secondary and document.body[10] != "selectlanguage{%s}" % document.language:
|
||||
# Since the user options are always placed after the babel options,
|
||||
# we need to reset the main language
|
||||
document.body[2 : 2] = ["\\begin_layout Standard",
|
||||
|
Loading…
Reference in New Issue
Block a user