I'm building a source editor extension and when it gets triggered I want to show an alert.
I tried this:
let alert = NSAlert()
alert.messageText = "Hello world"
alert.informativeText = "Information text"
alert.addButton(withTitle: "OK")
alert.addButton(withTitle: "Cancel")
alert.runModal()
But I get this error:
Exception: NSWindow drag regions should only be invalidated on the Main Thread! NSWindow drag regions should only be invalidated on the Main Thread!
Thank you in advance