commit e533118b38983648036e72aae4d9739ed91e1d66
Author: Jean-Marc Lasgouttes <lasgout...@lyx.org>
Date:   Wed May 3 12:15:26 2023 +0200

    spacing
---
 src/BufferView.cpp |   18 +++++++++---------
 1 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/BufferView.cpp b/src/BufferView.cpp
index bf1eb7b..9931c3f 100644
--- a/src/BufferView.cpp
+++ b/src/BufferView.cpp
@@ -3352,8 +3352,8 @@ void BufferView::buildCaretGeometry(bool complet)
        bool const slant = fm.italic() && cur.inTexted() && !cur.selection();
        double const slope = slant ? fm.italicSlope() : 0;
        cg.shapes.push_back(
-               {{iround(p.x_ + dim.asc * slope), p.y_},
-                {iround(p.x_ - dim.des * slope), p.y_ + dim.height()},
+               {{iround(p.x_ + dim.asc * slope),                 p.y_},
+                {iround(p.x_ - dim.des * slope),                 p.y_ + 
dim.height()},
                 {iround(p.x_ + dir * dim.wid - dim.des * slope), p.y_ + 
dim.height()},
                 {iround(p.x_ + dir * dim.wid + dim.asc * slope), p.y_}}
                );
@@ -3366,10 +3366,10 @@ void BufferView::buildCaretGeometry(bool complet)
                int const xx = iround(p.x_ - dim.des * slope);
                int const yy = p.y_ + dim.height();
                cg.shapes.push_back(
-                       {{xx, yy - dim.wid},
+                       {{xx,                            yy - dim.wid},
                         {xx + dir * (dim.wid + lx - 1), yy - dim.wid},
                         {xx + dir * (dim.wid + lx - 1), yy},
-                        {xx, yy}}
+                        {xx,                            yy}}
                        );
        }
 
@@ -3382,12 +3382,12 @@ void BufferView::buildCaretGeometry(bool complet)
                // starting position x
                int const xx = p.x_ + dir * dim.wid + sx;
                cg.shapes.push_back(
-                       {{xx, m - d},
-                        {xx + dir * d, m},
-                        {xx, m + d},
-                        {xx, m + d - dim.wid},
+                       {{xx,                     m - d},
+                        {xx + dir * d,           m},
+                        {xx,                     m + d},
+                        {xx,                     m + d - dim.wid},
                         {xx + dir * d - dim.wid, m},
-                        {xx, m - d + dim.wid}}
+                        {xx,                     m - d + dim.wid}}
                        );
        }
 
-- 
lyx-cvs mailing list
lyx-cvs@lists.lyx.org
http://lists.lyx.org/mailman/listinfo/lyx-cvs

Reply via email to