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;
SelectedText() {
startX = startY = 0;
endX = endY = 0;
startRow = startCol = 0;
endRow = endCol = 0;
startX = startY = -1;
endX = endY = -1;
startRow = startCol = -1;
endRow = endCol = -1;
}
bool needsRender() {