mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 05:16:21 +00:00
preview comes always after a latecommand
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@26826 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
dec8e81ebd
commit
e90f9ea0f7
@ -1429,11 +1429,6 @@ def revert_include(document):
|
||||
if i == -1:
|
||||
return
|
||||
nextline = i + 1
|
||||
if r0.match(document.body[nextline]):
|
||||
previewline = document.body[nextline]
|
||||
nextline += 1
|
||||
else:
|
||||
previewline = ""
|
||||
m = r1.match(document.body[nextline])
|
||||
if m == None:
|
||||
document.warning("Malformed LyX document: No LatexCommand line for `" +
|
||||
@ -1442,6 +1437,11 @@ def revert_include(document):
|
||||
continue
|
||||
cmd = m.group(1)
|
||||
nextline += 1
|
||||
if r0.match(document.body[nextline]):
|
||||
previewline = document.body[nextline]
|
||||
nextline += 1
|
||||
else:
|
||||
previewline = ""
|
||||
m = r2.match(document.body[nextline])
|
||||
if m == None:
|
||||
document.warning("Malformed LyX document: No filename line for `" + \
|
||||
|
Loading…
Reference in New Issue
Block a user