GRAPHICS: MACGUI: Enable blinking cursor on input line

This commit is contained in:
Avijeet 2022-07-19 18:15:50 +05:30 committed by Eugene Sandulenko
parent 920a925265
commit dc52ccaec9

View File

@ -227,6 +227,9 @@ bool MacTextWindow::draw(bool forceRedraw) {
// Compose
_mactext->draw(_composeSurface, true);
if (_cursorState)
_composeSurface->blitFrom(*_cursorSurface, *_cursorRect, Common::Point(_cursorX, _cursorY));
return true;
}
@ -634,7 +637,7 @@ static void cursorTimerHandler(void *refCon) {
void MacTextWindow::updateCursorPos() {
_cursorY = _mactext->getTextHeight() - _scrollPos - kCursorHeight;
_cursorY += _inputText.empty() ? 3 : 0;
_cursorDirty = true;
}