]> git.lyx.org Git - features.git/commitdiff
Off by one here. Left an extra \begin_layout line.
authorRichard Heck <rgheck@comcast.net>
Tue, 6 Jul 2010 14:38:10 +0000 (14:38 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 6 Jul 2010 14:38:10 +0000 (14:38 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@34786 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/lyx_2_0.py

index 966ec68be8b9866da3e3ffdd92adcf67c625a1c9..2a26029db4c99c0693f31d9b4649e7674f192886 100644 (file)
@@ -1846,7 +1846,7 @@ def revert_makebox(document):
     length = latex_length(length).split(",")[1]
     subst = "\\makebox[" + length + "][" \
       + align + "]{"
-    document.body[i:i + 13] = put_cmd_in_ert(subst)
+    document.body[i:i + 14] = put_cmd_in_ert(subst)
     i += 1