From 1e2d16273c6ae68a13c5f235025273f054129744 Mon Sep 17 00:00:00 2001 From: Adel Gadllah Date: Mon, 26 Sep 2011 20:33:59 +0200 Subject: [PATCH] layoutManager: Treat screen_sized OR windows as fullscreen https://bugzilla.gnome.org/show_bug.cgi?id=660166 --- js/ui/layout.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/js/ui/layout.js b/js/ui/layout.js index f21fcca30..a50c9f222 100644 --- a/js/ui/layout.js +++ b/js/ui/layout.js @@ -825,6 +825,13 @@ Chrome.prototype = { monitor.inFullscreen = true; } if (layer == Meta.StackLayer.OVERRIDE_REDIRECT) { + // Check whether the window is screen sized + if (window.x == 0 && window.y == 0 && + window.width == global.screen_width && + window.height == global.screen_height) + monitor.inFullscreen = true; + + // Or whether it is monitor sized let monitor = this._findMonitorForWindow(window); if (monitor && window.x <= monitor.x &&