From f2b1f3a833fa3fbf39b88d68308b28773c5fff5c Mon Sep 17 00:00:00 2001 From: Abraham Murciano Date: Thu, 15 Apr 2021 21:42:30 +0300 Subject: [PATCH] Made login button fill parent width The login button now fills the parent width, since when the ActionButtons are too large and overflow the fixed 270, it causes the inputs to be as wide as them but not the button, so this change should make the button match the inputs in such cases. --- kde/sddm/Login.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kde/sddm/Login.qml b/kde/sddm/Login.qml index 0d37ed3..8bd5dda 100644 --- a/kde/sddm/Login.qml +++ b/kde/sddm/Login.qml @@ -120,8 +120,8 @@ SessionManagementScreen { background: Rectangle { id: buttonBackground - width:30 - height: 270 + height: parent.width + width: height / 9 radius: width / 2 rotation: -90 anchors.centerIn: parent