From cde59b308da60aa4163e1acd74dc388923e7ce1e Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 6 Jun 2026 15:35:31 +1000 Subject: [PATCH] fix: always complete network opacity in anim --- modules/nexus/pages/NetworkPage.qml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/modules/nexus/pages/NetworkPage.qml b/modules/nexus/pages/NetworkPage.qml index 38be289d..f83427a7 100644 --- a/modules/nexus/pages/NetworkPage.qml +++ b/modules/nexus/pages/NetworkPage.qml @@ -93,12 +93,22 @@ PageBase { } move: Transition { + Anim { + property: "opacity" + to: 1 + type: Anim.DefaultEffects + } Anim { property: "y" } } displaced: Transition { + Anim { + property: "opacity" + to: 1 + type: Anim.DefaultEffects + } Anim { property: "y" }