Screen refresh optimization

This commit is contained in:
Ianos Gnatiuc 2006-01-29 17:28:22 +00:00
parent b7062fe8c3
commit a49d62da90

View File

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