From 16f345d1f39c4659a25b8e46f3f7ed4b0b28974e Mon Sep 17 00:00:00 2001 From: Lemmy Date: Mon, 26 Jan 2026 18:36:01 -0500 Subject: [PATCH] keyboard-layout: toast shows full layout name --- Services/Keyboard/KeyboardLayoutService.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Services/Keyboard/KeyboardLayoutService.qml b/Services/Keyboard/KeyboardLayoutService.qml index ff66c4dcf..f6e455fdc 100644 --- a/Services/Keyboard/KeyboardLayoutService.qml +++ b/Services/Keyboard/KeyboardLayoutService.qml @@ -75,7 +75,7 @@ Singleton { if (layoutChanged) { if (Settings.data.notifications.enableKeyboardLayoutToast) { const message = I18n.tr("toast.keyboard-layout.changed", { - "layout": currentLayout + "layout": fullLayoutName }); ToastService.showNotice(I18n.tr("toast.keyboard-layout.title"), message, "", 2000); }