From 2c50d50440026467e1138380038f8dad62643885 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sun, 10 Jul 2022 11:19:40 -0400 Subject: [PATCH] homescreens/halcyon: Fix folder drop animation --- .../homescreens/halcyon/package/contents/ui/FavoritesGrid.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml b/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml index f4b204fc..a9bccd83 100644 --- a/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml +++ b/containments/homescreens/halcyon/package/contents/ui/FavoritesGrid.qml @@ -85,7 +85,6 @@ MobileShell.GridView { function moveDragToCurrentPos(from, to) { if (from !== to) { - console.log(from + ' ' + to) visualModel.items.move(from, to); Halcyon.PinnedModel.moveEntry(from, to); } @@ -193,6 +192,8 @@ MobileShell.GridView { } else { Halcyon.PinnedModel.createFolderFromApps(drop.source.visualIndex, appDelegate.visualIndex); } + folderAnim.to = 0; + folderAnim.restart(); } NumberAnimation {