Browse Source

Load choose datadir dialog after options reset

0.14
Andrew Chow 8 years ago
parent
commit
57acb82e70
  1. 3
      src/qt/intro.cpp
  2. 3
      src/qt/optionsmodel.cpp

3
src/qt/intro.cpp

@ -178,7 +178,7 @@ void Intro::pickDataDirectory() @@ -178,7 +178,7 @@ void Intro::pickDataDirectory()
/* 2) Allow QSettings to override default dir */
dataDir = settings.value("strDataDir", dataDir).toString();
if(!fs::exists(GUIUtil::qstringToBoostPath(dataDir)) || GetBoolArg("-choosedatadir", DEFAULT_CHOOSE_DATADIR))
if(!fs::exists(GUIUtil::qstringToBoostPath(dataDir)) || GetBoolArg("-choosedatadir", DEFAULT_CHOOSE_DATADIR) || settings.value("fReset", false).toBool() || GetBoolArg("-resetguisettings", false))
{
/* If current default data directory does not exist, let the user choose one */
Intro intro;
@ -204,6 +204,7 @@ void Intro::pickDataDirectory() @@ -204,6 +204,7 @@ void Intro::pickDataDirectory()
}
settings.setValue("strDataDir", dataDir);
settings.setValue("fReset", false);
}
/* Only override -datadir if different from the default, to make it possible to
* override -datadir in the bitcoin.conf file in the default data directory

3
src/qt/optionsmodel.cpp

@ -164,6 +164,9 @@ void OptionsModel::Reset() @@ -164,6 +164,9 @@ void OptionsModel::Reset()
// Set strDataDir
settings.setValue("strDataDir", dataDir);
// Set that this was reset
settings.setValue("fReset", true);
// default setting for OptionsModel::StartAtStartup - disabled
if (GUIUtil::GetStartOnSystemStartup())
GUIUtil::SetStartOnSystemStartup(false);

Loading…
Cancel
Save