1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-25 08:12:17 +00:00

cocoa: fix mouse autohide

broken in 547b62f
This commit is contained in:
Stefano Pigozzi 2014-10-05 23:49:09 +02:00
parent 69508dc507
commit ba994bc0dd

View File

@ -137,7 +137,7 @@
- (BOOL)canHideCursor
{
return self.hasMouseDown && [self containsMouseLocation];
return !self.hasMouseDown && [self containsMouseLocation];
}
- (void)mouseEntered:(NSEvent *)event