Fix: Cleaned up some code.

This commit is contained in:
Keyitdev
2024-12-18 01:13:04 +01:00
parent a7dd8a931e
commit 95d664e483
5 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -13,7 +13,7 @@ Column {
Label {
anchors.horizontalCenter: parent.horizontalCenter
font.pointSize: config.HeaderText !=="" ? root.font.pointSize * 3 : 0
font.pointSize: root.font.pointSize * 3
color: config.HeaderTextColor
renderType: Text.QtRendering
text: config.HeaderText
+1 -1
View File
@@ -11,7 +11,7 @@ Column {
id: inputContainer
Layout.fillWidth: true
property Control exposeSession: sessionSelect.exposeSession
property ComboBox exposeSession: sessionSelect.exposeSession
property bool failed
Item {
+1 -1
View File
@@ -11,7 +11,7 @@ ColumnLayout {
id: formContainer
SDDM.TextConstants { id: textConstants }
property int p: config.ScreenPadding
property int p: config.ScreenPadding == "" ? 0 : config.ScreenPadding
property string a: config.FormPosition
Clock {
+1 -1
View File
@@ -14,7 +14,7 @@ Item {
property var selectedSession: selectSession.currentIndex
property string textConstantSession
property int loginButtonWidth
property Control exposeSession: selectSession
property ComboBox exposeSession: selectSession
ComboBox {
id: selectSession
+1 -1
View File
@@ -16,7 +16,7 @@ RowLayout {
property var suspend: ["Suspend", config.TranslateSuspend || textConstants.suspend, sddm.canSuspend]
property var hibernate: ["Hibernate", config.TranslateHibernate || textConstants.hibernate, sddm.canHibernate]
property Control exposedSession
property ComboBox exposedSession
Repeater {