mirror of
https://github.com/zen-browser/desktop.git
synced 2025-10-26 12:27:50 +00:00
31 lines
1.4 KiB
C++
31 lines
1.4 KiB
C++
diff --git a/browser/components/customizableui/CustomizeMode.sys.mjs b/browser/components/customizableui/CustomizeMode.sys.mjs
|
|
index fd3c54a1d80f5800ffd2dcaaf594eed4bd2d300c..3178bd28affd8bd2e18c347fde6c3ec00068710c 100644
|
|
--- a/browser/components/customizableui/CustomizeMode.sys.mjs
|
|
+++ b/browser/components/customizableui/CustomizeMode.sys.mjs
|
|
@@ -503,7 +503,7 @@ export class CustomizeMode {
|
|
this.#transitioning = true;
|
|
|
|
let customizer = document.getElementById("customization-container");
|
|
- let browser = document.getElementById("browser");
|
|
+ let browser = document.getElementById("tabbrowser-tabbox"); // ZEN: This fixes customizing mode!!! Dont remove it
|
|
browser.hidden = true;
|
|
customizer.hidden = false;
|
|
|
|
@@ -640,7 +640,7 @@ export class CustomizeMode {
|
|
}
|
|
|
|
let customizer = document.getElementById("customization-container");
|
|
- let browser = document.getElementById("browser");
|
|
+ let browser = document.getElementById("tabbrowser-tabbox"); // ZEN: This fixes customizing mode!!! Dont remove it
|
|
customizer.hidden = true;
|
|
browser.hidden = false;
|
|
|
|
@@ -1176,6 +1176,7 @@ export class CustomizeMode {
|
|
return (
|
|
aNode.localName == "toolbarbutton" ||
|
|
aNode.localName == "toolbaritem" ||
|
|
+ aNode.localName == "zen-workspace-icons" ||
|
|
aNode.localName == "toolbarseparator" ||
|
|
aNode.localName == "toolbarspring" ||
|
|
aNode.localName == "toolbarspacer"
|