Terminal: Fix cursor blinking.

Signed-off-by: Adrien Destugues - PulkoMandy <[email protected]>
This commit is contained in:
Jonathan Schleifer
2012-11-05 19:23:58 +01:00
committed by Adrien Destugues - PulkoMandy
parent 9e7a46be20
commit a0e690928b
+6 -2
View File
@@ -1228,8 +1228,12 @@ TermView::_DrawCursor()
} else {
if (selected)
SetHighColor(fSelectBackColor);
else
SetHighColor(fCursorBackColor);
else {
if (cursorVisible)
SetHighColor(fCursorBackColor);
else
SetHighColor(kTermColorTable[IS_BACKCOLOR(attr)]);
}
FillRect(rect);
}