Mobile: make sure QML gets notified when value changes

This addresses the following warning when running the mobile app:
INFO: QQmlExpression: Expression qrc:/qml/DownloadFromDiveComputer.qml:339:5 depends on non-NOTIFYable properties:
INFO:     QMLManager::DC_forceDownload

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2019-09-21 16:31:27 -07:00
parent 71a75bfda5
commit b2230855e6
2 changed files with 3 additions and 1 deletions

View file

@ -1924,6 +1924,7 @@ void QMLManager::DC_setBluetoothMode(bool mode)
void QMLManager::DC_setForceDownload(bool force)
{
DCDeviceData::instance()->setForceDownload(force);
DC_ForceDownloadChanged();
}
void QMLManager::DC_setSaveDump(bool dumpMode)