mirror of
https://github.com/zen-browser/desktop.git
synced 2026-09-01 19:23:34 +00:00
35 lines
1.2 KiB
C++
35 lines
1.2 KiB
C++
diff --git a/browser/components/preferences/main.js b/browser/components/preferences/main.js
|
|
index fcbd421c99b24e53e46131a1e21ec690814cbf4f..fe3778a57aaeebc53f7f6763ea234cbb41816186 100644
|
|
--- a/browser/components/preferences/main.js
|
|
+++ b/browser/components/preferences/main.js
|
|
@@ -662,6 +662,11 @@ function createStartupConfig(hidden = false) {
|
|
},
|
|
],
|
|
},
|
|
+ {
|
|
+ id: "zenWorkspaceContinueWhereLeftOff",
|
|
+ l10nId: "zen-workspace-continue-where-left-off",
|
|
+ control: "moz-checkbox",
|
|
+ },
|
|
{
|
|
id: "windowsLaunchOnLogin",
|
|
l10nId: "windows-launch-on-login",
|
|
@@ -709,7 +714,7 @@ function createStartupConfig(hidden = false) {
|
|
SettingGroupManager.registerGroups({
|
|
defaultBrowser: createDefaultBrowserConfig(),
|
|
startup: createStartupConfig(
|
|
- Services.prefs.getBoolPref("browser-settings-redesign.enabled", false)
|
|
+ false
|
|
),
|
|
});
|
|
|
|
@@ -762,7 +767,7 @@ function getBundleForLocales(newLocales) {
|
|
])
|
|
);
|
|
return new Localization(
|
|
- ["browser/preferences/preferences.ftl", "branding/brand.ftl"],
|
|
+ ["browser/preferences/preferences.ftl", "branding/brand.ftl", "browser/preferences/zen-preferences.ftl"],
|
|
false,
|
|
undefined,
|
|
locales
|