Fix reversion of beamer overprint when a nested paragraph has an argument

This commit is contained in:
Juergen Spitzmueller 2014-05-21 11:36:47 +02:00
parent 7b69cd6be5
commit aa8227b61f

View File

@ -3156,6 +3156,9 @@ def revert_overprint(document):
r = r + 1
argbeg = find_token(document.body, "\\begin_inset Argument 1", i, j)
if argbeg != -1:
# Is this really our argument?
nested = find_token(document.body, "\\begin_deeper", i, argbeg)
if nested != -1:
argend = find_end_of_inset(document.body, argbeg)
if argend == -1:
document.warning("Malformed LyX document. Cannot find end of Overprint argument!")