diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-07-03 11:57:05 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-07-03 11:57:05 +0200 |
commit | 51098794ed03568b7bf743739365f34840d93098 (patch) | |
tree | 88bbd9adbc3132d47034abf668a4ba1f941383bb /application/palemoon/app | |
parent | ee5da989be3216486359498b61c68ff1f8b1633e (diff) | |
download | UXP-51098794ed03568b7bf743739365f34840d93098.tar UXP-51098794ed03568b7bf743739365f34840d93098.tar.gz UXP-51098794ed03568b7bf743739365f34840d93098.tar.lz UXP-51098794ed03568b7bf743739365f34840d93098.tar.xz UXP-51098794ed03568b7bf743739365f34840d93098.zip |
[PALEMOON] On GTK, default to showing the menubar only when alt is pressed
This restores parity with v27
Diffstat (limited to 'application/palemoon/app')
-rw-r--r-- | application/palemoon/app/profile/palemoon.js | 9 |
1 files changed, 7 insertions, 2 deletions
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) |