NSCursor reset to arrowCursor when zooming in full screen NSWindow

163 Views Asked by At

I try to change cursor when scroll is zooming.

- (void)resetCursorRects 
{
    [super resetCursorRects];
    [self addCursorRect:self.bounds cursor:[NSCursor openHandCursor]];
}

It works normally until I change to fullScreen mode. When I'm pinning cursor change to arrow type.

I want it working like Photos application (when zooming in the photo in fullScreen mode).

0

There are 0 best solutions below