From 5958766997362c151da3f038afbb0ae67c3d7e75 Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Wed, 22 Jul 2015 19:09:35 -0500 Subject: [PATCH] Repair fullscreen detection. Fixes #903 --- modules/browser.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/browser.js b/modules/browser.js index d91f39d2..8398a9d8 100644 --- a/modules/browser.js +++ b/modules/browser.js @@ -5123,7 +5123,7 @@ TreeStyleTabBrowser.prototype = inherit(TreeStyleTabWindow.prototype, { onBeforeFullScreenToggle : function TSTBrowser_onBeforeFullScreenToggle() { if (this.position != 'top') { - var isEnteringFullScreenMode = !this.window.fullScreen; + var isEnteringFullScreenMode = this.window.fullScreen; // entering to the DOM-fullscreen (ex. YouTube Player) if (this.document.mozFullScreen && isEnteringFullScreenMode) { this.setTabbrowserAttribute(this.kDOM_FULLSCREEN_ACTIVATED, true);