Refresh whole page if new language is loaded or word is added to user dictionary

This commit is contained in:
Ianos Gnatiuc 2005-11-30 11:17:42 +00:00
parent 8036f5ef7e
commit ff6714f600

View File

@ -2129,7 +2129,18 @@ void IEclass::SCheckerMenu()
} }
if (finaltag == -2) if (finaltag == -2)
refresh(currline, row); {
Line *line = currline;
uint32_t _row = row;
while (line->prev && (_row > minrow))
{
line = line->prev;
_row--;
}
refresh(line, _row);
}
} }
#endif #endif