]> git.lyx.org Git - features.git/commitdiff
fix small thinko
authorAndré Pönitz <poenitz@gmx.net>
Tue, 10 Jul 2001 10:40:23 +0000 (10:40 +0000)
committerAndré Pönitz <poenitz@gmx.net>
Tue, 10 Jul 2001 10:40:23 +0000 (10:40 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2214 a592a061-630c-0410-9148-cb99ea01b6c8

src/mathed/math_matrixinset.C

index 1ee03e8de44f4e4899f0229c58eb942e9ffb2ba4..d2c4629f7bf8f44979a146a94cdf1c0f2878f774 100644 (file)
@@ -514,7 +514,6 @@ void MathMatrixInset::mutate(short newtype)
                                                if (!nonum_[r])
                                                        allnonum = false;
                                        }
-                                       nonum_[0] = allnonum;
 
                                        // set first non-empty label
                                        string label;
@@ -524,9 +523,11 @@ void MathMatrixInset::mutate(short newtype)
                                                        break;
                                                }
                                        }
-                                       label_[0] = label;
 
                                        glueall();
+
+                                       nonum_[0] = allnonum;
+                                       label_[0] = label;
                                        mutate(newtype);
                                        break;
                                }