From 9a73be92077614e290a4ce08d237112e5a22b6b1 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 7 Oct 2019 22:37:31 -0500 Subject: [PATCH] Mobile: add helper function to keep selection in sync Without this the core data structure never gets updated to reflect which dive is currently selected. Signed-off-by: Dirk Hohndel --- mobile-widgets/qmlmanager.cpp | 9 +++++++++ mobile-widgets/qmlmanager.h | 1 + 2 files changed, 10 insertions(+) diff --git a/mobile-widgets/qmlmanager.cpp b/mobile-widgets/qmlmanager.cpp index f6c182a55..08ce7fca7 100644 --- a/mobile-widgets/qmlmanager.cpp +++ b/mobile-widgets/qmlmanager.cpp @@ -1375,6 +1375,15 @@ bool QMLManager::undoDelete(int id) return true; } +void QMLManager::selectDive(int id) +{ + int i; + struct dive *dive = NULL; + + for_each_dive (i, dive) + dive->selected = (dive->id == id); +} + void QMLManager::deleteDive(int id) { struct dive *d = get_dive_by_uniq_id(id); diff --git a/mobile-widgets/qmlmanager.h b/mobile-widgets/qmlmanager.h index e47119a71..b2c118848 100644 --- a/mobile-widgets/qmlmanager.h +++ b/mobile-widgets/qmlmanager.h @@ -164,6 +164,7 @@ public slots: void openNoCloudRepo(); void saveChangesLocal(); void saveChangesCloud(bool forceRemoteSync); + void selectDive(int id); void deleteDive(int id); void copyDiveData(int id); void pasteDiveData(int id);