I'm running into an issue in a mac osx app. I'm displaying a popover using an NSBox and I'm noticing tooltips from elements underneath are showing through
I've created a quick demo project to show the issue: https://github.com/GP89/tooltipper
I've tried everything I can think of
- setting
nextResponder
on the box to nil - overriding all the mouse event handlers I can find in a subclass of NSBox (eg.
mouseMoved
) - setting
acceptsTouchEvents
to false
Plus a bunch of searching online
I did find some similar issues like this one where they silence mouse events, but I can't seem to find a way of doing it for tooltips