[utilities/kdebugsettings] src/quickapps/contents/ui: Add textfield + label
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 68d277b85815065e2b54894e22444bd7eaf19117 by Laurent Montel.
Committed on 20/07/2026 at 11:33.
Pushed by mlaurent into branch 'master'.
Add textfield + label
M +9 -0 src/quickapps/contents/ui/EditCustomRuleDialog.qml
https://invent.kde.org/utilities/kdebugsettings/-/commit/68d277b85815065e2b54894e22444bd7eaf19117
diff --git a/src/quickapps/contents/ui/EditCustomRuleDialog.qml b/src/quickapps/contents/ui/EditCustomRuleDialog.qml
index 49bdd562..1e6d0cab 100644
--- a/src/quickapps/contents/ui/EditCustomRuleDialog.qml
+++ b/src/quickapps/contents/ui/EditCustomRuleDialog.qml
@@ -21,6 +21,15 @@ Kirigami.Dialog {
Layout.alignment: Qt.AlignLeft
text: i18n("Category:")
}
+ QQC2.TextField {
+ id: categoryName
+ }
+ QQC2.Label {
+ Layout.fillHeight: true
+ Layout.leftMargin: 4
+ Layout.alignment: Qt.AlignLeft
+ text: i18n("Type:")
+ }
QQC2.ComboBox {
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter