formatter

This commit is contained in:
Zacharias-Brohn
2026-02-24 23:20:11 +01:00
parent 40cd984b6d
commit d56a0260fb
202 changed files with 15037 additions and 15352 deletions
+8 -11
View File
@@ -13,23 +13,21 @@ CustomRect {
ColumnLayout {
id: clayout
anchors.left: parent.left
anchors.right: parent.right
CustomRect {
Layout.preferredHeight: colorLayout.implicitHeight
Layout.fillWidth: true
Layout.preferredHeight: colorLayout.implicitHeight
color: DynamicColors.tPalette.m3surfaceContainer
ColumnLayout {
id: colorLayout
anchors.left: parent.left
anchors.right: parent.right
anchors.margins: Appearance.padding.large
anchors.right: parent.right
Settings {
name: "smth"
@@ -49,20 +47,19 @@ CustomRect {
required property string name
Layout.preferredWidth: 200
Layout.preferredHeight: 42
Layout.preferredWidth: 200
radius: 4
CustomText {
id: text
anchors.left: parent.left
anchors.right: parent.right
anchors.margins: Appearance.padding.smaller
text: settingsItem.name
font.pointSize: 32
anchors.right: parent.right
font.bold: true
font.pointSize: 32
text: settingsItem.name
verticalAlignment: Text.AlignVCenter
}
}
+1 -1
View File
@@ -9,5 +9,5 @@ import qs.Helpers
CustomRect {
id: root
}
+4 -5
View File
@@ -20,7 +20,6 @@ CustomRect {
}
Item {
}
}
@@ -29,26 +28,26 @@ CustomRect {
required property string name
implicitWidth: 200
implicitHeight: 42
implicitWidth: 200
radius: 4
RowLayout {
id: layout
anchors.left: parent.left
anchors.margins: Appearance.padding.smaller
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
anchors.margins: Appearance.padding.smaller
CustomText {
id: text
text: settingsItem.name
Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
Layout.fillWidth: true
Layout.fillHeight: true
Layout.fillWidth: true
Layout.leftMargin: Appearance.spacing.normal
text: settingsItem.name
verticalAlignment: Text.AlignVCenter
}
}