mirror of
https://github.com/zen-browser/desktop.git
synced 2026-05-28 07:45:09 +00:00
24 lines
1.2 KiB
C++
24 lines
1.2 KiB
C++
diff --git a/browser/components/preferences/preferences.js b/browser/components/preferences/preferences.js
|
|
index 7a279d4655523156ff259c9f6bcb2a0def9d1749..de71cec7693d1fe3bf34017ab76027b83631830a 100644
|
|
--- a/browser/components/preferences/preferences.js
|
|
+++ b/browser/components/preferences/preferences.js
|
|
@@ -121,6 +121,7 @@ ChromeUtils.defineLazyGetter(this, "gSubDialog", function () {
|
|
styleSheets: [
|
|
"chrome://browser/skin/preferences/dialog.css",
|
|
"chrome://browser/skin/preferences/preferences.css",
|
|
+ "chrome://browser/skin/preferences/zen-preferences.css",
|
|
],
|
|
resizeCallback: async ({ title, frame }) => {
|
|
// Search within main document and highlight matched keyword.
|
|
@@ -350,6 +351,10 @@ function init_all() {
|
|
register_module("paneSearch", gSearchPane);
|
|
register_module("panePrivacy", gPrivacyPane);
|
|
register_module("paneContainers", gContainersPane);
|
|
+ register_module("paneZenLooks", gZenLooksAndFeel);
|
|
+ register_module("paneZenTabManagement", gZenWorkspacesSettings);
|
|
+ register_module("paneZenCKS", gZenCKSSettings);
|
|
+ register_module("paneZenMarketplace", gZenMarketplaceManager);
|
|
|
|
for (let [id, config] of Object.entries(CONFIG_PANES)) {
|
|
SettingPaneManager.registerPane(id, config);
|