From 71e24d717de6b6b7c3ce86530ef38c4ee8c0fc4a Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Tue, 28 Oct 2025 02:08:02 +0100 Subject: [PATCH] SessionMenu: Use same animation as launcher --- Modules/SessionMenu/SessionMenu.qml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Modules/SessionMenu/SessionMenu.qml b/Modules/SessionMenu/SessionMenu.qml index 7afb7903..01ebbccb 100644 --- a/Modules/SessionMenu/SessionMenu.qml +++ b/Modules/SessionMenu/SessionMenu.qml @@ -277,7 +277,7 @@ NPanel { NText { text: timerActive ? I18n.tr("session-menu.action-in-seconds", { - "action": I18n.tr("session-menu." + pendingAction).charAt(0).toUpperCase() + I18n.tr("session-menu." + pendingAction).slice(1), + "action": I18n.tr("session-menu." + pendingAction), "seconds": Math.ceil(timeRemaining / 1000) }) : I18n.tr("session-menu.title") font.weight: Style.fontWeightBold @@ -368,6 +368,7 @@ NPanel { Behavior on color { ColorAnimation { duration: Style.animationFast + easing.type: Easing.OutCirc } } @@ -398,6 +399,7 @@ NPanel { Behavior on color { ColorAnimation { duration: Style.animationFast + easing.type: Easing.OutCirc } } } @@ -428,6 +430,7 @@ NPanel { Behavior on color { ColorAnimation { duration: Style.animationFast + easing.type: Easing.OutCirc } } }