fix: Fixed Inconsistant capitalization in blank window locales, b=closes #12009, c=kbs

This commit is contained in:
mr. m
2026-01-25 00:05:49 +01:00
parent 5b685bc26d
commit 3f03ffb27b
4 changed files with 3 additions and 6 deletions

View File

@@ -1109,7 +1109,7 @@ class nsZenKeyboardShortcutsVersioner {
if (version < 15) {
// Migrate from version 13 to 14
// Add shortcut to open a new unsynced window: Default accelt+option+N (Ctrl+Alt+N on non-macOS)
// Add shortcut to open a new unsynced window: Default accelt+shift+N
data.push(
new KeyShortcut(
"zen-new-unsynced-window",

View File

@@ -17,7 +17,7 @@ ChromeUtils.defineESModuleGetters(lazy, {
setTimeout: "resource://gre/modules/Timer.sys.mjs",
});
XPCOMUtils.defineLazyPreferenceGetter(lazy, "gWindowSyncEnabled", "zen.window-sync.enabled");
XPCOMUtils.defineLazyPreferenceGetter(lazy, "gWindowSyncEnabled", "zen.window-sync.enabled", true);
XPCOMUtils.defineLazyPreferenceGetter(lazy, "gShouldLog", "zen.window-sync.log", true);
const OBSERVING = ["browser-window-before-show", "sessionstore-windows-restored"];