[utilities/kdebugsettings] src/quickapps/contents/ui: Fix align text
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 9a2a9364c76d5320060e0951ed0b1363d6f1f826 by Laurent Montel.
Committed on 20/07/2026 at 11:35.
Pushed by mlaurent into branch 'master'.
Fix align text
M +4 -4 src/quickapps/contents/ui/EditCustomRuleDialog.qml
https://invent.kde.org/utilities/kdebugsettings/-/commit/9a2a9364c76d5320060e0951ed0b1363d6f1f826
diff --git a/src/quickapps/contents/ui/EditCustomRuleDialog.qml b/src/quickapps/contents/ui/EditCustomRuleDialog.qml
index 1e6d0cab..ba4ee71a 100644
--- a/src/quickapps/contents/ui/EditCustomRuleDialog.qml
+++ b/src/quickapps/contents/ui/EditCustomRuleDialog.qml
@@ -16,18 +16,18 @@ Kirigami.Dialog {
spacing: Kirigami.Units.smallSpacing
QQC2.Label {
- Layout.fillHeight: true
Layout.leftMargin: 4
- Layout.alignment: Qt.AlignLeft
+ Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
+ verticalAlignment: Text.AlignVCenter
text: i18n("Category:")
}
QQC2.TextField {
id: categoryName
}
QQC2.Label {
- Layout.fillHeight: true
Layout.leftMargin: 4
- Layout.alignment: Qt.AlignLeft
+ Layout.alignment: Qt.AlignLeft | Qt.AlignVCenter
+ verticalAlignment: Text.AlignVCenter
text: i18n("Type:")
}
QQC2.ComboBox {