Fix continuous spell checking

The extra check became useless after 4796e6b3, but its presence only
broke continuous spell checking after f65f3adb.
This commit is contained in:
Jean-Marc Lasgouttes 2015-08-26 13:54:35 +02:00
parent d88e401589
commit 4ede231ef1

View File

@ -631,11 +631,9 @@ void RowPainter::paintText()
case Row::VIRTUAL:
paintStringAndSel(e);
// Paint the spelling mark if needed.
if (lyxrc.spellcheck_continuously && pi_.do_spellcheck
&& par_.isMisspelled(e.pos)) {
// Paint the spelling marks if enabled.
if (lyxrc.spellcheck_continuously && pi_.do_spellcheck)
paintMisspelledMark(orig_x, e);
}
break;
case Row::INSET: {
// If outer row has changed, nested insets are repaint completely.