]> git.lyx.org Git - lyx.git/blobdiff - src/lyxlayout.C
fix crash when collapsing ert with cursor inside
[lyx.git] / src / lyxlayout.C
index 4067415a567d32e60d50090222d6b6c19291c406..9cf7ffa447c8a84a2056b3ad91aa5e38f4d21fbc 100644 (file)
@@ -121,7 +121,7 @@ LyXLayout::LyXLayout ()
        free_spacing = false;
        pass_thru = false;
        is_environment = false;
-       toclevel = 0;
+       toclevel = -2;
        commanddepth = 0;
 }
 
@@ -207,7 +207,8 @@ bool LyXLayout::Read(LyXLex & lexrc, LyXTextClass const & tclass)
 
                case LT_COPYSTYLE:     // initialize with a known style
                        if (lexrc.next()) {
-                               string const style = lexrc.getString();
+                               string const style = subst(lexrc.getString(),
+                                                               '_', ' ');
 
                                if (tclass.hasLayout(style)) {
                                        string const tmpname = name_;
@@ -785,7 +786,7 @@ void LyXLayout::readSpacing(LyXLex & lexrc)
                break;
        case ST_OTHER:
                lexrc.next();
-               spacing.set(Spacing::Other, lexrc.getFloat());
+               spacing.set(Spacing::Other, lexrc.getString());
                break;
        }
 }