Browse Source

fix(Paths): Default to auto paths detection mode

So that settings can be found in either the portable or system wide location.
reviewable/pr6461/r5
Anthony Bilinski 4 years ago
parent
commit
d0c120e0a8
No known key found for this signature in database
GPG Key ID: 2AA8E0DA1B31FB3C
  1. 2
      src/persistence/settings.cpp

2
src/persistence/settings.cpp

@ -67,7 +67,7 @@ Settings::Settings() @@ -67,7 +67,7 @@ Settings::Settings()
, useCustomDhtList{false}
, makeToxPortable{false}
, currentProfileId(0)
, paths(*Paths::makePaths(Paths::Portable::NonPortable))
, paths(*Paths::makePaths(Paths::Portable::Auto))
{
settingsThread = new QThread();
settingsThread->setObjectName("qTox Settings");

Loading…
Cancel
Save