diff --git a/src/background.js b/src/background.js index 5efde71..4b7c86a 100644 --- a/src/background.js +++ b/src/background.js @@ -347,10 +347,12 @@ class Background { } // create dock menu for macOS - app.dock.setMenu(createDockMenu(this.window)); + const createdDockMenu = createDockMenu(this.window); + if (createDockMenu && app.dock) app.dock.setMenu(createdDockMenu); // create touch bar - this.window.setTouchBar(createTouchBar(this.window)); + const createdTouchBar = createTouchBar(this.window); + if (createdTouchBar) this.window.setTouchBar(createdTouchBar); // register global shortcuts if (this.store.get('settings.enableGlobalShortcut') !== false) {