From 51098794ed03568b7bf743739365f34840d93098 Mon Sep 17 00:00:00 2001 From: wolfbeast Date: Tue, 3 Jul 2018 11:57:05 +0200 Subject: [PALEMOON] On GTK, default to showing the menubar only when alt is pressed This restores parity with v27 --- application/palemoon/app/profile/palemoon.js | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'application') diff --git a/application/palemoon/app/profile/palemoon.js b/application/palemoon/app/profile/palemoon.js index 1894a30f2..5a73e816f 100644 --- a/application/palemoon/app/profile/palemoon.js +++ b/application/palemoon/app/profile/palemoon.js @@ -1123,11 +1123,16 @@ pref("browser.padlock.urlbar_background", 2); pref("browser.display.standalone_images.background_color", "#2E3B41"); // These are the thumbnail width/height set in about:newtab. -// If you change this, ENSURE IT IS THE SAME SIZE SET -// by about:newtab. These values are in CSS pixels. +// If you change this, make sure the size is sufficient for tile sizes +// in about:newtab. These values are in CSS pixels. pref("toolkit.pageThumbs.minWidth", 250); pref("toolkit.pageThumbs.minHeight", 180); +// On GTK, we now default to showing the menubar only when alt is pressed: +#ifdef MOZ_WIDGET_GTK +pref("ui.key.menuAccessKeyFocuses", true); +#endif + // ****************** domain-specific UAs ****************** // AMO needs "Firefox", obviously - pass on the OS (determined at build time) -- cgit v1.2.3