]> git.lyx.org Git - lyx.git/blobdiff - src/rowpainter.cpp
(finishing patch -- question was restored, but there were still problems)
[lyx.git] / src / rowpainter.cpp
index 23ded2cd842e35f2152b7e4b81079c08f7902442..080ef43f648a82ebfda240eee0e8f1da57d998d5 100644 (file)
@@ -347,7 +347,7 @@ void RowPainter::paintMisspelledMark(double orig_x, int desc, bool changed)
        // derive the offset from zoom factor specified by user in percent
        // if changed the misspelled marker gets placed slightly lower than normal
        // to avoid drawing at the same vertical offset 
-       int const offset = (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);
        pi_.pain.line(int(orig_x), y, int(x_), y, Color_red, Painter::line_onoffdash, 1.0);
 }