How do I make a Menu Bar (NSPopover) App active when clicking on the menu button?
I fixed it myself in the end, it turned out to be a very simple fix as expected.
All I needed to to was call NSApplication.sharedApplication().activateIgnoringOtherApps(true)
in the ViewControllers viewDidAppear()
method.
It fixes everything!