From b9d45e5ef6d9707fa61c5d2c3454a549f56ec18f Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 21 Feb 2017 09:46:54 +0100 Subject: [PATCH] Set the cursor a bit on the left in empty cells --- 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 0ba4bad38d..484e0ed56e 100644 --- a/src/mathed/InsetMathNest.cpp +++ b/src/mathed/InsetMathNest.cpp @@ -173,7 +173,7 @@ void InsetMathNest::cursorPos(BufferView const & bv, // move cursor visually into empty cells ("blue rectangles"); if (ar.empty()) { Dimension const dim = coord_cache.getArrays().dim(&ar); - x += dim.wid / 2; + x += dim.wid / 3; } } -- 2.39.2