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.
This commit is contained in:
Carlos Soriano 2014-09-07 10:22:26 +02:00
parent 6cb1692841
commit d44c3d0cd3

View File

@ -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,