mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
Fix conversion of beamer block titles that end with a non-ERT inset.
Should also go to branch!
This commit is contained in:
parent
7e1541dd49
commit
dced492489
@ -2978,7 +2978,16 @@ def convert_beamerblocks(document):
|
||||
if i != -1:
|
||||
if document.body[parbeg] == "\\begin_inset ERT":
|
||||
ertcontfirstline = parbeg + 5
|
||||
ertcontlastline = parend - 6
|
||||
# Find the last ERT in this paragraph (which might also be the first)
|
||||
lastertbeg = find_token_backwards(document.body, "\\begin_inset ERT", j)
|
||||
if lastertbeg == -1:
|
||||
document.warning("Last ERT not found!")
|
||||
break
|
||||
lastertend = find_end_of_inset(document.body, lastertbeg)
|
||||
if lastertend == -1:
|
||||
document.warning("End of last ERT not found!")
|
||||
break
|
||||
ertcontlastline = lastertend - 3
|
||||
while True:
|
||||
if document.body[ertcontfirstline].startswith("<"):
|
||||
# This is an overlay specification
|
||||
|
Loading…
Reference in New Issue
Block a user