]> git.lyx.org Git - features.git/commitdiff
Set the cursor a bit on the left in empty cells
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 21 Feb 2017 08:46:54 +0000 (09:46 +0100)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Tue, 21 Feb 2017 08:53:52 +0000 (09:53 +0100)
src/mathed/InsetMathNest.cpp

index 0ba4bad38d884c780d9a6d48183061941177ac7d..484e0ed56e9069b064f094d7a55fc1bb68f2264b 100644 (file)
@@ -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;
        }
 }