From 14d57ba19e5c7ef83f492f9f87da194c14949687 Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 30 Nov 2010 14:36:51 +0000 Subject: [PATCH] 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 --- src/rowpainter.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/rowpainter.cpp b/src/rowpainter.cpp index 1687f71e40..d7e05593b8 100644 --- a/src/rowpainter.cpp +++ b/src/rowpainter.cpp @@ -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 // 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); + int const y = yo_ + desc + (changed ? offset : 0) + 1; pi_.pain.line(int(orig_x), y, int(x_), y, Color_misspelled, - Painter::line_onoffdash, 1.0); + Painter::line_onoffdash, 2.0); } -- 2.39.2