Don't show system cursor on OS X in the first mouseEntered

This commit is contained in:
David Capello 2016-06-07 10:03:57 -03:00
parent b4588d34f4
commit 915fac0d23

View File

@ -91,7 +91,8 @@ bool is_key_pressed(KeyScancode scancode)
- (id)initWithFrame:(NSRect)frameRect
{
m_nsCursor = [NSCursor arrowCursor];
// We start without the system mouse cursor
m_nsCursor = nil;
m_visibleMouse = true;
m_pointerType = she::PointerType::Unknown;