Set arrow as default cursor on Windows

This commit is contained in:
Daniel Collin 2019-12-03 15:31:45 +01:00
parent 5772cc5380
commit daa57e9fa9

View file

@ -485,6 +485,9 @@ impl Window {
], ],
}; };
// Set arrow as default cursor
winuser::SetCursor(self.cursors[0]);
Ok(window) Ok(window)
} }
} }