From 7917ebcc408dc2ad700a8adcbdf7ceec8521b62b Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Mon, 6 Feb 2017 11:59:39 +0100 Subject: [PATCH] Fix cursor positionning in empty math arrays (blue box) --- src/mathed/InsetMathNest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mathed/InsetMathNest.cpp b/src/mathed/InsetMathNest.cpp index 3460cdca35..d4438a6e73 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -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; } -- 2.39.2