Moved delegate methods to 'AppDelegate' object

This commit is contained in:
Armando Rivera 2023-10-13 12:13:57 -04:00
parent 1e74abaa7f
commit 2ce602f403

View File

@ -91,21 +91,21 @@
[appMenuItem setSubmenu:appMenu];
}
- (void)applicationDidFinishLaunching: (NSNotification *)notification
{
[[NSUserNotificationCenter defaultUserNotificationCenter] setDelegate:self];
// - (void)applicationDidFinishLaunching: (NSNotification *)notification
// {
// [[NSUserNotificationCenter defaultUserNotificationCenter] setDelegate:self];
}
// }
- (BOOL)applicationShouldTerminateAfterLastWindowClosed: (NSNotification *)notification
{
return YES;
}
// - (BOOL)applicationShouldTerminateAfterLastWindowClosed: (NSNotification *)notification
// {
// return YES;
// }
- (BOOL)userNotificationCenter:(NSUserNotificationCenter *)center shouldPresentNotification:(NSUserNotification *)notification
{
return YES;
}
// - (BOOL)userNotificationCenter:(NSUserNotificationCenter *)center shouldPresentNotification:(NSUserNotification *)notification
// {
// return YES;
// }
@end