From: Jean-Marc Lasgouttes Date: Tue, 21 Feb 2017 08:46:54 +0000 (+0100) Subject: Set the cursor a bit on the left in empty cells X-Git-Tag: 2.3.0alpha1~342 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=b9d45e5ef6d9707fa61c5d2c3454a549f56ec18f;p=features.git Set the cursor a bit on the left in empty cells --- 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; } }