From 074007ef48043a4ee7961d202951adc4b6dd4970 Mon Sep 17 00:00:00 2001 From: Devin Lin Date: Sun, 14 Sep 2025 14:33:28 -0400 Subject: [PATCH] homescreens/folio: Fix folder animating from wrong y There was a typo with the padding to use in the calculation for the y position of the folder, it should use the top padding not the right padding. --- containments/homescreens/folio/qml/FolderView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containments/homescreens/folio/qml/FolderView.qml b/containments/homescreens/folio/qml/FolderView.qml index 8b3888e0..d31e22d8 100644 --- a/containments/homescreens/folio/qml/FolderView.qml +++ b/containments/homescreens/folio/qml/FolderView.qml @@ -41,7 +41,7 @@ Folio.DelegateTouchArea { function onFolderAboutToOpen(x, y) { root.folderPositionX = x - folio.HomeScreenState.viewLeftPadding; - root.folderPositionY = y - folio.HomeScreenState.viewRightPadding; + root.folderPositionY = y - folio.HomeScreenState.viewTopPadding; } }