From 1e4f98b4aecba42a32db1d1525bc1549abd1cea1 Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sun, 30 Jul 2017 01:45:09 +0300 Subject: [PATCH] fix #633,trigger correctly the animations signals --restoring the applets from the parabolic effect didnt send correctly the ending signal that their animation was finished --- containment/package/contents/ui/applet/AppletItemWrapper.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containment/package/contents/ui/applet/AppletItemWrapper.qml b/containment/package/contents/ui/applet/AppletItemWrapper.qml index 76ca0f225..7b9c6f8ed 100644 --- a/containment/package/contents/ui/applet/AppletItemWrapper.qml +++ b/containment/package/contents/ui/applet/AppletItemWrapper.qml @@ -215,7 +215,7 @@ Item{ } } else if ((zoomScale == 1) && container.isZoomed) { container.isZoomed = false; - if (!root.editMode && animationWasSent) { + if (animationWasSent) { root.slotAnimationsNeedBothAxis(-1); animationWasSent = false; }