Rectangle in Programmeinstellungen.qml entfernt

This commit is contained in:
2024-10-26 22:54:23 +02:00
parent aad1c44e6b
commit 014e497cc5

View File

@@ -49,25 +49,19 @@ ApplicationWindow
Layout.fillWidth: true Layout.fillWidth: true
Layout.fillHeight: true Layout.fillHeight: true
currentIndex: bar.currentIndex currentIndex: bar.currentIndex
Layout.margins: 9
Item Item
{ {
id: createUser id: createUser
Layout.fillWidth: parent.width Layout.fillWidth: parent.width
Rectangle
{
anchors.fill: parent
anchors.rightMargin: 9
anchors.leftMargin: 9
anchors.topMargin: 9
anchors.bottomMargin: 9
GridLayout GridLayout
{ {
id: createUserGrid id: createUserGrid
columns: 2 columns: 2
anchors.fill: parent anchors.fill: parent
Layout.margins: 9
Label Label
{ {
text: qsTr("Benutzername:") text: qsTr("Benutzername:")
@@ -102,24 +96,18 @@ ApplicationWindow
} }
} }
} }
}
Item Item
{ {
id: settingsDB id: settingsDB
Layout.fillWidth: parent.width Layout.fillWidth: parent.width
Rectangle
{
anchors.rightMargin: 9
anchors.leftMargin: 9
anchors.topMargin: 9
anchors.bottomMargin: 9
anchors.fill: parent
GridLayout GridLayout
{ {
id: dbGrid id: dbGrid
columns: 2 columns: 2
anchors.fill: parent anchors.fill: parent
Label Label
{ {
text: qsTr("DB-Host:") text: qsTr("DB-Host:")
@@ -193,13 +181,9 @@ ApplicationWindow
} }
} }
} }
}
RowLayout RowLayout
{ {
Layout.leftMargin: 9 Layout.margins: 9
Layout.rightMargin: 9
Layout.topMargin: 9
Layout.bottomMargin: 9
Item Item
{ {