]> git.lyx.org Git - lyx.git/blobdiff - src/mathed/math_undersetinset.C
revert Buffer LyxText->InsetText commit
[lyx.git] / src / mathed / math_undersetinset.C
index 734984e9069b838c9eed2ef607dffdff4017d5db..74b8f0494d1b092e0557417fc84b8e2931867221 100644 (file)
@@ -64,13 +64,13 @@ bool MathUndersetInset::idxLast(LCursor & cur) const
 }
 
 
-bool MathUndersetInset::idxUpDown(LCursor & cur, bool up, int targetx) const
+bool MathUndersetInset::idxUpDown(LCursor & cur, bool up) const
 {
        idx_type target = up; // up ? 1 : 0, since upper cell has idx 1
        if (cur.idx() == target)
                return false;
        cur.idx() = target;
-       cur.pos() = cur.cell().x2pos(targetx);
+       cur.pos() = cur.cell().x2pos(cur.x_target());
        return true;
 }