diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a075539f..b2d7fd208 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Updated many translations +### Fixed +- tray menu not visible over break window on macOS ## [1.4.0] - 2020-12-25 ### Added diff --git a/app/main.js b/app/main.js index ac306a2b0..6c53eb204 100644 --- a/app/main.js +++ b/app/main.js @@ -485,7 +485,7 @@ function startMicrobreak () { microbreakWinLocal.loadURL(modalPath) microbreakWinLocal.setVisibleOnAllWorkspaces(true) - microbreakWinLocal.setAlwaysOnTop(!showBreaksAsRegularWindows, 'screen-saver') + microbreakWinLocal.setAlwaysOnTop(!showBreaksAsRegularWindows, 'pop-up-menu') if (microbreakWinLocal) { microbreakWinLocal.on('close', (e) => { if (!appIsQuitting) { @@ -613,7 +613,7 @@ function startBreak () { }) breakWinLocal.loadURL(modalPath) breakWinLocal.setVisibleOnAllWorkspaces(true) - breakWinLocal.setAlwaysOnTop(!showBreaksAsRegularWindows, 'screen-saver') + breakWinLocal.setAlwaysOnTop(!showBreaksAsRegularWindows, 'pop-up-menu') if (breakWinLocal) { breakWinLocal.on('close', (e) => { if (!appIsQuitting) {