Undo screen refresh optimization

This commit is contained in:
Ianos Gnatiuc 2006-02-03 11:25:19 +00:00
parent 6726c51a12
commit 6cb936888f

View File

@ -1349,12 +1349,17 @@ void IEclass::DelChar() {
// Make sure the line type still is correct
setlinetype(_thisline);
wrapdel(&currline, &col, &row, false);
if (((row-1) == minrow) && currline->prev)
refresh(currline->prev, minrow);
else
// Rewrap this line
bool display = make_bool_not(row > maxrow / 2);
wrapdel(&currline, &col, &row, display);
if(display) {
refresh(currline, row);
}
else {
// Refresh the display
Line* _topline = findtopline();
refresh(_topline, minrow);
}
GFTRK(NULL);
}