GRAPHICS: MACGUI: Do not draw selection in the initial state

This commit is contained in:
Eugene Sandulenko 2017-08-07 11:57:43 +02:00
parent 5249e5a8af
commit 6e690dbca9

View File

@ -35,10 +35,10 @@ struct SelectedText {
int endRow, endCol; int endRow, endCol;
SelectedText() { SelectedText() {
startX = startY = 0; startX = startY = -1;
endX = endY = 0; endX = endY = -1;
startRow = startCol = 0; startRow = startCol = -1;
endRow = endCol = 0; endRow = endCol = -1;
} }
bool needsRender() { bool needsRender() {