From 4025d7fb8580b238115b0e72995fd9ab37a309a9 Mon Sep 17 00:00:00 2001 From: notiant <238434866+notiant@users.noreply.github.com> Date: Sun, 1 Mar 2026 22:20:33 +0100 Subject: [PATCH] Change idle settings title & add Enter key for acceptance in NSpinBox --- Modules/LockScreen/LockScreenHeader.qml | 1 + Modules/Panels/Settings/SettingsContent.qml | 2 +- Widgets/NSpinBox.qml | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Modules/LockScreen/LockScreenHeader.qml b/Modules/LockScreen/LockScreenHeader.qml index b1b169aca..d75b37c6c 100644 --- a/Modules/LockScreen/LockScreenHeader.qml +++ b/Modules/LockScreen/LockScreenHeader.qml @@ -125,6 +125,7 @@ Rectangle { "es": "dddd, d 'de' MMMM", "fr": "dddd d MMMM", "hu": "dddd, MMMM d.", + "it": "dddd d MMMM", "ja": "yyyy年M月d日 dddd", "ko": "yyyy년 M월 d일 dddd", "ku": "dddd, dê MMMM", diff --git a/Modules/Panels/Settings/SettingsContent.qml b/Modules/Panels/Settings/SettingsContent.qml index 4e63d28dc..3e0db6241 100644 --- a/Modules/Panels/Settings/SettingsContent.qml +++ b/Modules/Panels/Settings/SettingsContent.qml @@ -586,7 +586,7 @@ Item { }, { "id": SettingsPanel.Tab.Idle, - "label": "common.idle", + "label": "panels.idle.title", "icon": "settings-idle", "source": idleTab }, diff --git a/Widgets/NSpinBox.qml b/Widgets/NSpinBox.qml index 3d7141905..1ef3850a0 100644 --- a/Widgets/NSpinBox.qml +++ b/Widgets/NSpinBox.qml @@ -372,7 +372,7 @@ RowLayout { top: root.to } - Keys.onReturnPressed: { + onAccepted: { applyValue(); focus = false; }