mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
fix glitch in index reversion
This commit is contained in:
parent
729af37dfe
commit
1b42d800a3
@ -4504,9 +4504,15 @@ def revert_index_macros(document):
|
||||
# construct the latex sequence
|
||||
icont = xicont + put_cmd_in_ert("@") + xxicont[1:]
|
||||
if len(subentry) > 0:
|
||||
if (icont[0] == "\\begin_layout Plain Layout"):
|
||||
subentry2 = icont[1:]
|
||||
else:
|
||||
subentry2 = icont
|
||||
else:
|
||||
if (icont[0] == "\\begin_layout Plain Layout"):
|
||||
subentry = icont[1:]
|
||||
else:
|
||||
subentry = icont
|
||||
elif imacro == "sortkey":
|
||||
sortkey = icont
|
||||
# Everything stored. Delete subinset.
|
||||
|
Loading…
Reference in New Issue
Block a user