QML UI: go back to always saving libdivecomputer logfile

This got disabled as unintended (I hope) side effect of commit
807571a588 ("core: update deviceData default from qml").

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
Dirk Hohndel 2018-06-27 16:00:31 -07:00
parent 59cd3902a1
commit 314b08c78f

View file

@ -220,7 +220,11 @@ DCDeviceData::DCDeviceData()
data.force_download = false;
data.create_new_trip = false;
data.libdc_dump = false;
#if defined(SUBSURFACE_MOBILE)
data.libdc_log = true;
#else
data.libdc_log = false;
#endif
if (m_instance) {
qDebug() << "already have an instance of DCDevieData";
return;