Fix crash in application Dock menu on macOS.

This commit is contained in:
John Preston 2021-08-18 15:44:38 +03:00
parent 0f19ba3231
commit ddda7b8c52

View file

@ -200,6 +200,9 @@ ApplicationDelegate *_sharedDelegate = nil;
}
- (NSMenu *) applicationDockMenu:(NSApplication *)sender {
if (!Core::IsAppLaunched()) {
return nil;
}
RpMenu* dockMenu = [[[RpMenu alloc] initWithTitle: @""] autorelease];
[dockMenu setAutoenablesItems:false];