diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-11-07 00:19:46 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-11-08 20:50:05 +0100 |
commit | 20fda8afc37df863343d0f78ef983a3d42db7d34 (patch) | |
tree | 972805f7451d2a33e86df0171a5ee6ad53907b86 /mobile-widgets/qml/main.qml | |
parent | ae27dd77a74423ab17e83268030794e34d4f61c0 (diff) | |
download | subsurface-20fda8afc37df863343d0f78ef983a3d42db7d34.tar.gz |
Mobile: reconnect the correct model after changing filter
This caused a blank, unusable dive list.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'mobile-widgets/qml/main.qml')
-rw-r--r-- | mobile-widgets/qml/main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile-widgets/qml/main.qml b/mobile-widgets/qml/main.qml index c73de4667..47b3d8f50 100644 --- a/mobile-widgets/qml/main.qml +++ b/mobile-widgets/qml/main.qml @@ -84,7 +84,7 @@ Kirigami.ApplicationWindow { function hideBusyAndConnectModel() { // this is used by QMLManager when done filtering busy.running = false - diveList.diveListModel = diveModel + diveList.diveListModel = diveTripModel } function returnTopPage() { |