GNOME Bugzilla – Bug 662394
WindowManager.js: _shouldAnimate : function(actor) checks against wrong variable
Last modified: 2011-11-08 00:59:55 UTC
In file gnome-shell/js/ui/windowManager.js: _shouldAnimate : function(actor) if (Main.overview.visible || this._animationsBlocked > 0) [...] Variable _animationsBlocked does not exist. Correct check should be: _shouldAnimate : function(actor) { if (Main.overview.visible || this._animationBlockCount > 0) [...]
Good catch - can you attach a git-format'ed patch?
Created attachment 199664 [details] [review] Patch Here you go!
Review of attachment 199664 [details] [review]: Looks good, thanks! However, git.gnome.org requires a valid email address to push. Also the commit message could be improved, I'd suggest something along the lines of window-manager: Fix variable name In _shouldAnimate() _animationBlockCount was referred to as _animationsBlocked, fix this. https://bugzilla.gnome.org/show_bug.cgi?id=662394
Created attachment 199805 [details] [review] [PATCH] window-manager: Fix variable name I hope this one works ;)
(In reply to comment #4) > I hope this one works ;) Indeed, thanks again for the patch!