mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 12:32:26 +00:00
experiment in spell checker mark appearance (see bug #7112)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@36629 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
d985b9c3d9
commit
14d57ba19e
@ -360,9 +360,9 @@ void RowPainter::paintMisspelledMark(double orig_x, int desc, bool changed)
|
|||||||
// if changed the misspelled marker gets placed slightly lower than normal
|
// if changed the misspelled marker gets placed slightly lower than normal
|
||||||
// to avoid drawing at the same vertical offset
|
// to avoid drawing at the same vertical offset
|
||||||
int const offset = int(1.5 * lyxrc.zoom / 100.0); // [percent]
|
int const offset = int(1.5 * lyxrc.zoom / 100.0); // [percent]
|
||||||
int const y = yo_ + desc + (changed ? offset : 0);
|
int const y = yo_ + desc + (changed ? offset : 0) + 1;
|
||||||
pi_.pain.line(int(orig_x), y, int(x_), y, Color_misspelled,
|
pi_.pain.line(int(orig_x), y, int(x_), y, Color_misspelled,
|
||||||
Painter::line_onoffdash, 1.0);
|
Painter::line_onoffdash, 2.0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user