From d44c3d0cd3e434941db3c18264ed34594a6f1c81 Mon Sep 17 00:00:00 2001 From: Carlos Soriano Date: Sun, 7 Sep 2014 10:22:26 +0200 Subject: [PATCH] iconGrid: Make actors reactive on animating out as well Commit 9e5704b introduced a regression due to a sloppy mistake not making actors reactive on animation out. Fix that making actors reactive when animating out as well. --- js/ui/iconGrid.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/iconGrid.js b/js/ui/iconGrid.js index 13a87c3b7..9432bdf0d 100644 --- a/js/ui/iconGrid.js +++ b/js/ui/iconGrid.js @@ -569,6 +569,7 @@ const IconGrid = new Lang.Class({ this._animationDone(); this._restoreItemsOpacity(); } + actor.reactive = true; actorClone.destroy(); })}; fadeParams = { time: ANIMATION_FADE_IN_TIME_FOR_ITEM,