From d83a9c9478120a1a8c4782f9250da4b69ed4f4db Mon Sep 17 00:00:00 2001 From: Nate Graham Date: Wed, 1 Jun 2022 09:05:17 -0600 Subject: [PATCH] NoPasswordUnlock: fix indentation GIT_SILENT (cherry picked from commit 930d3b2bccc230333ed6f2ef8de1c747a35c784d) --- .../contents/lockscreen/NoPasswordUnlock.qml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lookandfeel/contents/lockscreen/NoPasswordUnlock.qml b/lookandfeel/contents/lockscreen/NoPasswordUnlock.qml index 5042f1fe2..eeb10ad23 100644 --- a/lookandfeel/contents/lockscreen/NoPasswordUnlock.qml +++ b/lookandfeel/contents/lockscreen/NoPasswordUnlock.qml @@ -10,14 +10,14 @@ import org.kde.plasma.components 3.0 as PlasmaComponents3 import "../components" SessionManagementScreen { + focus: true + PlasmaComponents3.Button { + id: loginButton focus: true - PlasmaComponents3.Button { - id: loginButton - focus: true - text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Unlock") - icon.name: "unlock" - onClicked: Qt.quit(); - Keys.onEnterPressed: clicked() - Keys.onReturnPressed: clicked() - } + text: i18nd("plasma_lookandfeel_org.kde.lookandfeel", "Unlock") + icon.name: "unlock" + onClicked: Qt.quit(); + Keys.onEnterPressed: clicked() + Keys.onReturnPressed: clicked() + } }