mirror of
https://github.com/zen-browser/desktop.git
synced 2025-10-09 11:26:44 +00:00
20 lines
1.0 KiB
C++
20 lines
1.0 KiB
C++
diff --git a/browser/base/content/browser-fullScreenAndPointerLock.js b/browser/base/content/browser-fullScreenAndPointerLock.js
|
|
index d477ac782e0cb921203f8cd38da70a003ac41b39..648d0b4066b630a9b31da0bb8490f29da701dd3d 100644
|
|
--- a/browser/base/content/browser-fullScreenAndPointerLock.js
|
|
+++ b/browser/base/content/browser-fullScreenAndPointerLock.js
|
|
@@ -427,10 +427,10 @@ var FullScreen = {
|
|
gNavToolbox.classList.toggle("fullscreen-with-menubar", shiftSize > 0);
|
|
|
|
let transform = shiftSize > 0 ? `translateY(${shiftSize}px)` : "";
|
|
- gNavToolbox.style.transform = transform;
|
|
- gURLBar.textbox.style.transform = gURLBar.textbox.hasAttribute("breakout")
|
|
- ? transform
|
|
- : "";
|
|
+ //gNavToolbox.style.transform = transform;
|
|
+ //gURLBar.textbox.style.transform = gURLBar.textbox.hasAttribute("breakout")
|
|
+ // ? transform
|
|
+ // : "";
|
|
if (shiftSize > 0) {
|
|
// If the mouse tracking missed our fullScreenToggler, then the toolbox
|
|
// might not have been shown before the menubar is animated down. Make
|