diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2019-05-05 16:07:15 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2019-05-11 11:40:07 -0700 |
commit | 144de49ad45eb882ecfaf4257c20999e4efd1db1 (patch) | |
tree | 544c72caf217da6c89a6f235b0e561c2378d784e /core/downloadfromdcthread.cpp | |
parent | a4ecfb75222d73db6dbe7d66b48c659b138cf8e0 (diff) | |
download | subsurface-144de49ad45eb882ecfaf4257c20999e4efd1db1.tar.gz |
Mobile: add checkbox to force downloading all dives
This has been a feature people have asked for quite frequently. It is
taking up some valuable screen real estate - so the question could
become if there should be a switch to enable / disable it.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'core/downloadfromdcthread.cpp')
-rw-r--r-- | core/downloadfromdcthread.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/downloadfromdcthread.cpp b/core/downloadfromdcthread.cpp index f2a65ac5f..5cd8956dc 100644 --- a/core/downloadfromdcthread.cpp +++ b/core/downloadfromdcthread.cpp @@ -82,6 +82,7 @@ void DownloadThread::run() internalData->devname = "ftdi"; #endif qDebug() << "Starting download from " << (internalData->bluetooth_mode ? "BT" : internalData->devname); + qDebug() << "downloading" << (internalData->force_download ? "all" : "only new") << "dives"; clear_table(&downloadTable); clear_dive_site_table(&diveSiteTable); |