fix cursor setting to use current cursor

This commit is contained in:
Christopher Lloyd 2011-01-20 17:43:41 -05:00
parent 4b0a4d7d38
commit 09977fa0e3

View File

@ -2771,7 +2771,12 @@ NSString * const NSWindowDidAnimateNotification=@"NSWindowDidAnimateNotification
delay=2.;
[[NSToolTipWindow sharedToolTipWindow] performSelector:@selector(orderFront:) withObject:nil afterDelay:delay];
}
if(!cursorIsSet){
[[NSCursor currentCursor] set];
cursorIsSet=YES;
}
return cursorIsSet;
}