From 3b646dc4fb940e1da95dd8fdf0b2dc40d7a6dec0 Mon Sep 17 00:00:00 2001 From: ivan tkachenko Date: Sat, 30 Apr 2022 03:19:58 +0300 Subject: [PATCH] [sddm-theme] Minor code style changes --- sddm-theme/KeyboardButton.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sddm-theme/KeyboardButton.qml b/sddm-theme/KeyboardButton.qml index 56c7711a0..93da7e51d 100644 --- a/sddm-theme/KeyboardButton.qml +++ b/sddm-theme/KeyboardButton.qml @@ -32,7 +32,7 @@ PlasmaComponents.ToolButton { } } - signal keyboardLayoutChanged + signal keyboardLayoutChanged() PlasmaComponents.Menu { id: menu @@ -49,7 +49,7 @@ PlasmaComponents.ToolButton { property string shortName: modelData.shortName onTriggered: { keyboard.currentLayout = model.index - keyboardLayoutChanged() + root.keyboardLayoutChanged() } } }