From 05b534437948d51d5b2191964b2ae5429d29721e Mon Sep 17 00:00:00 2001 From: Michail Vourlakos Date: Sun, 21 Apr 2019 16:25:50 +0300 Subject: [PATCH] improve when tasks geometries are published --take into account the scrolling area, when animations in scrolling area are ended tasks geometries could be calculated again --- plasmoid/package/contents/ui/task/TaskItem.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plasmoid/package/contents/ui/task/TaskItem.qml b/plasmoid/package/contents/ui/task/TaskItem.qml index 43fe8861a..48ca9c874 100644 --- a/plasmoid/package/contents/ui/task/TaskItem.qml +++ b/plasmoid/package/contents/ui/task/TaskItem.qml @@ -1398,7 +1398,7 @@ MouseArea{ Connections { target: scrollableList onAnimationsFinishedChanged: { - if (!scrollableList.animationsFinished) { + if (scrollableList.animationsFinished) { taskItem.slotPublishGeometries(); } }