From bd47b510585c45ca1e83a44f169e59f280ac827c Mon Sep 17 00:00:00 2001 From: Vlad Zagorodniy Date: Sun, 4 Nov 2018 14:38:55 +0200 Subject: [PATCH] [effects/scale] Don't animate popups on Wayland I made a horrible typo("popup" vs "popupWindow"), which went unnoticeable during code review and while I was testing the ported effect on Wayland. Because this change is pretty trivial (fixing a typo), I didn't put it on review. --- effects/scale/package/contents/code/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effects/scale/package/contents/code/main.js b/effects/scale/package/contents/code/main.js index 11b58c78a5..3ebcd74b14 100644 --- a/effects/scale/package/contents/code/main.js +++ b/effects/scale/package/contents/code/main.js @@ -62,7 +62,7 @@ var scaleEffect = { } // Don't animate combobox popups, tooltips, popup menus, etc. - if (window.popup) { + if (window.popupWindow) { return false; }