[utilities/kdebugsettings] src/quickapps/contents/ui: Implement filtering
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit 36b293aa1a2c298b55d2fd1990ca314f178c2ada by Laurent Montel.
Committed on 19/07/2026 at 15:57.
Pushed by mlaurent into branch 'master'.
Implement filtering
M +2 -2 src/quickapps/contents/ui/CustomRulesPage.qml
https://invent.kde.org/utilities/kdebugsettings/-/commit/36b293aa1a2c298b55d2fd1990ca314f178c2ada
diff --git a/src/quickapps/contents/ui/CustomRulesPage.qml b/src/quickapps/contents/ui/CustomRulesPage.qml
index 19d70bb7..1b421d5f 100644
--- a/src/quickapps/contents/ui/CustomRulesPage.qml
+++ b/src/quickapps/contents/ui/CustomRulesPage.qml
@@ -16,7 +16,7 @@ Kirigami.ScrollablePage {
actions: [
Kirigami.Action {
displayComponent: Kirigami.SearchField {
- // TODO onAccepted: LoggingManager.kdeApplicationLoggingCategoryProxyModel.filterText = text
+ onAccepted: LoggingManager.customLoggingCategoryProxyModel.filterText = text
}
}
]
@@ -25,7 +25,7 @@ Kirigami.ScrollablePage {
reuseItems: true
activeFocusOnTab: true // keyboard navigation
focus: true // keyboard navigation
- model: LoggingManager.customCategoryModel
+ model: LoggingManager.customLoggingCategoryProxyModel
delegate: Delegates.RoundedItemDelegate {
required property string displayRule
required property int index