diff --git a/configs/linux/mozconfig b/configs/linux/mozconfig index 12d7d8c56..7f7fea705 100644 --- a/configs/linux/mozconfig +++ b/configs/linux/mozconfig @@ -52,8 +52,10 @@ elif test "$ZEN_RELEASE"; then ac_add_options MOZ_PGO=1 # Override the default LTO flags because clang++ LITERALLY SEGFAULTS while compiling with -flto=thin... How unfortunate :c - export MOZ_LTO=cross - ac_add_options --enable-lto=cross + if ! test "$ZEN_DISABLE_LTO"; then + export MOZ_LTO=cross + ac_add_options --enable-lto=cross + fi # Optimization flags for general release ac_add_options --enable-wasm-avx diff --git a/src/browser/app/profile/zen-browser.js b/src/browser/app/profile/zen-browser.js index 049e11e0b..96ebd47cc 100644 --- a/src/browser/app/profile/zen-browser.js +++ b/src/browser/app/profile/zen-browser.js @@ -129,7 +129,7 @@ pref('zen.glance.hold-duration', 300); // in ms pref('zen.glance.activation-method', 'alt'); // ctrl, alt, shift, none, hold pref('zen.view.sidebar-height-throttle', 200); // in ms -pref('zen.view.sidebar-expanded.max-width', 400); +pref('zen.view.sidebar-expanded.max-width', 500); pref('zen.view.show-bottom-border', false); pref('zen.view.use-single-toolbar', true);