]> git.lyx.org Git - features.git/commitdiff
Give a 2 pixels space for markers around math objects
authorJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 8 Jun 2017 13:22:03 +0000 (15:22 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Fri, 9 Jun 2017 09:58:26 +0000 (11:58 +0200)
This is necessary when markers are nested. Ideally this should only be
done when there is risk of nesting.

Fixes (part of?) bug #10688.

src/mathed/MathRow.cpp

index 783e85ab54ab2b6452adcd0bf907f45a4370e1de..b312e22e6fbb17d2ba5a88b7044e275b246ea116 100644 (file)
@@ -49,8 +49,16 @@ namespace {
 
 int markerMargin(MathRow::Element const & e)
 {
-       return e.marker == InsetMath::MARKER
-               || e.marker == InsetMath::MARKER2;
+       switch(e.marker) {
+       case InsetMath::MARKER:
+       case InsetMath::MARKER2:
+       case InsetMath::BOX_MARKER:
+               return 2;
+       case InsetMath::NO_MARKER:
+               return 0;
+       }
+       // should not happen
+       return 0;
 }
 
 
@@ -92,7 +100,7 @@ void drawMarkers(PainterInfo const & pi, MathRow::Element const & e,
        Dimension const dim = coords.getInsets().dim(e.inset);
 
        // the marker is before/after the inset. Necessary space has been reserved already.
-       int const l = x + e.before - markerMargin(e);
+       int const l = x + e.before - (markerMargin(e) > 0 ? 1 : 0);
        int const r = x + dim.width() - e.after;
 
        if (e.marker == InsetMath::BOX_MARKER) {