From 7876ab993a989686898d552bb9182fdb16c2eef9 Mon Sep 17 00:00:00 2001 From: end-4 <97237370+end-4@users.noreply.github.com> Date: Sun, 28 Sep 2025 18:05:31 +0200 Subject: [PATCH] settings: remove unnecessary page check for anim --- .config/quickshell/ii/settings.qml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.config/quickshell/ii/settings.qml b/.config/quickshell/ii/settings.qml index 3f3df0703..64728412c 100644 --- a/.config/quickshell/ii/settings.qml +++ b/.config/quickshell/ii/settings.qml @@ -224,10 +224,8 @@ ApplicationWindow { Connections { target: root function onCurrentPageChanged() { - if (pageLoader.sourceComponent !== root.pages[root.currentPage].component) { - switchAnim.complete(); - switchAnim.start(); - } + switchAnim.complete(); + switchAnim.start(); } }