Fix cursor positionning in empty math arrays (blue box)

This commit is contained in:
Jean-Marc Lasgouttes 2017-02-06 11:59:39 +01:00
parent ba8da35afd
commit 7917ebcc40

View File

@ -172,7 +172,7 @@ void InsetMathNest::cursorPos(BufferView const & bv,
// << " ar.asc: " << ar.ascent() << " ar.des: " << ar.descent() << endl;
// move cursor visually into empty cells ("blue rectangles");
if (ar.empty())
x += 2;
x += 3;
}