Change ExploreComponent to signal text changes and set filterText from there

This commit is contained in:
James Graham
2024-02-16 19:48:16 +00:00
parent 1b59917f16
commit 292cfb0d3d
2 changed files with 10 additions and 1 deletions

View File

@@ -402,6 +402,10 @@ Kirigami.Page {
desiredWidth: root.width - Kirigami.Units.largeSpacing
collapsed: root.collapsed
connection: root.connection
onTextChanged: newText => {
sortFilterRoomListModel.filterText = newText;
}
}
}