]> git.lyx.org Git - lyx.git/blobdiff - src/rowpainter.cpp
experiment in spell checker mark appearance (see bug #7112)
[lyx.git] / src / rowpainter.cpp
index d76eed8b2bcea90de1f1106ef42f314f857913df..d7e05593b88e3b1d83301be8f78cf3f5119b7078 100644 (file)
@@ -360,8 +360,9 @@ void RowPainter::paintMisspelledMark(double orig_x, int desc, bool changed)
        // if changed the misspelled marker gets placed slightly lower than normal
        // to avoid drawing at the same vertical offset
        int const offset = int(1.5 * lyxrc.zoom / 100.0); // [percent]
-       int const y = yo_ + desc + (changed ? offset : 0);
-       pi_.pain.line(int(orig_x), y, int(x_), y, Color_red, Painter::line_onoffdash, 1.0);
+       int const y = yo_ + desc + (changed ? offset : 0) + 1;
+       pi_.pain.line(int(orig_x), y, int(x_), y, Color_misspelled,
+               Painter::line_onoffdash, 2.0);
 }