Remove the 'auto hide menu bar' option on Mac

The menu bar is at the top of the screen on Mac so this setting
does absolutely nothing.
pull/11326/head
David Baker 2019-11-05 20:31:08 +00:00
parent 7ca40bed32
commit 7af68bddea
1 changed files with 2 additions and 1 deletions

View File

@ -200,7 +200,8 @@ export default class ElectronPlatform extends VectorBasePlatform {
}
supportsAutoHideMenuBar(): boolean {
return true;
// This is irelevant on Mac as Menu bars don't live in the app window
return !navigator.platform.toUpperCase().includes('MAC');
}
async getAutoHideMenuBarEnabled(): boolean {