diff options
-rw-r--r-- | src/db.h | 1 | ||||
-rw-r--r-- | src/qt/optionsmodel.cpp | 5 |
2 files changed, 4 insertions, 2 deletions
@@ -52,6 +52,7 @@ public: void Flush(bool fShutdown); void CheckpointLSN(std::string strFile); void SetDetach(bool fDetachDB_) { fDetachDB = fDetachDB_; } + bool GetDetach() { return fDetachDB; } void CloseDb(const std::string& strFile); diff --git a/src/qt/optionsmodel.cpp b/src/qt/optionsmodel.cpp index 9f1c6447ae..e110cfa6af 100644 --- a/src/qt/optionsmodel.cpp +++ b/src/qt/optionsmodel.cpp @@ -128,7 +128,7 @@ QVariant OptionsModel::data(const QModelIndex & index, int role) const case DisplayAddresses: return QVariant(bDisplayAddresses); case DetachDatabases: - return QVariant(fDetachDB); + return QVariant(bitdb.GetDetach()); case Language: return settings.value("language", ""); default: @@ -215,7 +215,8 @@ bool OptionsModel::setData(const QModelIndex & index, const QVariant & value, in } break; case DetachDatabases: { - fDetachDB = value.toBool(); + bool fDetachDB = value.toBool(); + bitdb.SetDetach(fDetachDB); settings.setValue("detachDB", fDetachDB); } break; |