GUI: Revert immediate draw() of grid item on hover

This commit is contained in:
av-dx 2021-06-26 18:53:54 +05:30 committed by Eugene Sandulenko
parent 32de3d216d
commit 0c159e3bbf

View File

@ -126,7 +126,6 @@ void GridItemWidget::handleMouseEntered(int button) {
_grid->_selectedEntry = _activeEntry;
isHighlighted = true;
markAsDirty();
draw();
}
}
@ -135,7 +134,6 @@ void GridItemWidget::handleMouseLeft(int button) {
_grid->_selectedEntry = nullptr;
isHighlighted = false;
markAsDirty();
draw();
}
}