Refresh whole page if new language is loaded or word is added to user dictionary
This commit is contained in:
parent
8036f5ef7e
commit
ff6714f600
@ -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
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user