[utilities/kdebugsettings] src/quickapps/contents/ui: Add enable checkbox
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 5fdcacd6123fec08640f435a1020916f1e53e85c by Laurent Montel.
Committed on 20/07/2026 at 11:56.
Pushed by mlaurent into branch 'master'.
Add enable checkbox
M +6 -0 src/quickapps/contents/ui/EditCustomRuleDialog.qml
https://invent.kde.org/utilities/kdebugsettings/-/commit/5fdcacd6123fec08640f435a1020916f1e53e85c
diff --git a/src/quickapps/contents/ui/EditCustomRuleDialog.qml b/src/quickapps/contents/ui/EditCustomRuleDialog.qml
index ba4ee71a..81a09fae 100644
--- a/src/quickapps/contents/ui/EditCustomRuleDialog.qml
+++ b/src/quickapps/contents/ui/EditCustomRuleDialog.qml
@@ -31,6 +31,7 @@ Kirigami.Dialog {
text: i18n("Type:")
}
QQC2.ComboBox {
+ id: categoryType
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
model: CategoryTypeProxyModel {
@@ -40,5 +41,10 @@ Kirigami.Dialog {
textRole: "display"
valueRole: "categoryType"
}
+ QQC2.CheckBox {
+ id: categoryEnabled
+ Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
+ text: i18n("Enabled");
+ }
}
}