1
0
Fork 1
mirror of https://github.com/zen-browser/desktop.git synced 2025-07-10 04:25:31 +02:00

fix: Fix ZenWorkspaces initialization in hidden windows and private browsing mode

This commit is contained in:
Mauro Balades 2024-07-19 17:36:57 +02:00
parent a0f30e595b
commit 80f8e829df
5 changed files with 30 additions and 14 deletions

View file

@ -1,13 +1,14 @@
diff --git a/browser/base/content/browser-init.js b/browser/base/content/browser-init.js
index a79a9734619f89639c15087fe28e9615354a7209..212628c6fb2bed5ba17a3d2908f5d4b2376fa95e 100644
index a79a9734619f89639c15087fe28e9615354a7209..b7e6a413e02ed047e19de1db3866087a1fdc5c4a 100644
--- a/browser/base/content/browser-init.js
+++ b/browser/base/content/browser-init.js
@@ -230,6 +230,8 @@ var gBrowserInit = {
gURLBar.readOnly = true;
}
@@ -237,6 +237,9 @@ var gBrowserInit = {
gPrivateBrowsingUI.init();
BrowserSearch.init();
BrowserPageActions.init();
+
+ Services.scriptloader.loadSubScript("chrome://browser/content/zenThemeModifier.js", this);
+
// Misc. inits.
gUIDensity.init();
TabletModeUpdater.init();
+
if (gToolbarKeyNavEnabled) {
ToolbarKeyboardNavigator.init();
}