From 95b2e866fc5f8245a0ecdb2ae46d34839c532fdd Mon Sep 17 00:00:00 2001 From: audric Date: Mon, 30 Aug 2021 09:33:15 +1000 Subject: [PATCH] disable menu when the menu is hidden this also disable the ALT shortcut to show it. Relates #1769 --- js/background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/background.js b/js/background.js index db3c4d3ab..29770e5a8 100644 --- a/js/background.js +++ b/js/background.js @@ -140,7 +140,7 @@ getHideMenuBar: () => storage.get('hide-menu-bar'), setHideMenuBar: value => { storage.put('hide-menu-bar', value); - window.setAutoHideMenuBar(value); + window.setAutoHideMenuBar(false); window.setMenuBarVisibility(!value); },