mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Give a 2 pixels space for markers around math objects
This is necessary when markers are nested. Ideally this should only be done when there is risk of nesting. Fixes (part of?) bug #10688.
This commit is contained in:
parent
e1e85b547b
commit
183c97d8a8
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user