From 682356f9dae4d4c1ae1d706a2edb0befc9631447 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Fri, 5 Jun 2026 15:45:17 +1000 Subject: [PATCH] fix: invert nexus page anim direction --- modules/nexus/Pages.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nexus/Pages.qml b/modules/nexus/Pages.qml index ac4c747c..b2f03aac 100644 --- a/modules/nexus/Pages.qml +++ b/modules/nexus/Pages.qml @@ -35,7 +35,7 @@ Item { Connections { function onCurrentPageIdxChanged(): void { switchAnim.complete(); - root.animOff = root.Tokens.padding.extraLarge * (root.nState.currentPageIdx > root.lastPageIdx ? -1 : 1); + root.animOff = root.Tokens.padding.extraLarge * (root.nState.currentPageIdx > root.lastPageIdx ? 1 : -1); switchAnim.start(); root.lastPageIdx = root.nState.currentPageIdx; }