Skip to content

Commit

Permalink
fix(core): use relative storage path in portable build by default
Browse files Browse the repository at this point in the history
  • Loading branch information
trollixx committed Oct 19, 2018
1 parent 241b695 commit b7d7e0a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/core/settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ void Settings::load()
docsetPath = QStandardPaths::writableLocation(QStandardPaths::DataLocation)
+ QLatin1String("/docsets");
#else
docsetPath = QCoreApplication::applicationDirPath() + QLatin1String("/docsets");
docsetPath = QStringLiteral("docsets");
#endif
QDir().mkpath(docsetPath);
}
Expand Down

0 comments on commit b7d7e0a

Please sign in to comment.