mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Fixed: Catch exception when calling [NSApp sendEvent:event] and log it
This commit is contained in:
parent
92f4377eb4
commit
7b86bca098
1 changed files with 9 additions and 2 deletions
|
@ -442,9 +442,16 @@ void CCocoaEventEmitter::submitEvents(CEventServer& server, bool /* allWins */)
|
|||
processMessage(event, &server);
|
||||
}
|
||||
|
||||
@try
|
||||
{
|
||||
// forward the event to the cocoa application
|
||||
[NSApp sendEvent:event];
|
||||
}
|
||||
@catch(NSException *e)
|
||||
{
|
||||
nlwarning("Exception when sending event: %s", [[e reason] UTF8String]);
|
||||
}
|
||||
}
|
||||
|
||||
_server = &server;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue