diff --git a/src/content/blog/keep-menu-bar-running-after-quitting-app.mdx b/src/content/blog/keep-menu-bar-running-after-quitting-app.mdx index 47c3551..543aeee 100644 --- a/src/content/blog/keep-menu-bar-running-after-quitting-app.mdx +++ b/src/content/blog/keep-menu-bar-running-after-quitting-app.mdx @@ -45,7 +45,7 @@ Unfortunately, the menu bar item will disappear as soon as the user quits the ap ## Interrupting the app's termination -As you will probably have guessed by now, the keep to keeping the menu bar item visible after the user quits the app is to not let the app terminate. +As you will probably have guessed by now, the way to keep the menu bar item visible after the user quits the app is to avoid the app termination. Apple provides developers with a way to control and modify the app's termination process by implementing the [applicationShouldTerminate]() method in the app's delegate. @@ -224,4 +224,4 @@ class AppDelegate: NSObject, NSApplicationDelegate { return .terminateCancel } } -``` \ No newline at end of file +```