Compare commits

...

1 Commits

Author SHA1 Message Date
Tobias Fella
097096590b Fix QML warning 2023-08-30 00:06:41 +02:00

View File

@@ -161,7 +161,7 @@ Kirigami.Page {
ItemSelectionModel {
id: itemSelection
model: root.roomListModel
onCurrentChanged: listView.currentIndex = sortFilterRoomListModel.mapFromSource(current).row
onCurrentChanged: (current) => listView.currentIndex = sortFilterRoomListModel.mapFromSource(current).row
}
model: SortFilterRoomListModel {