Cache SearchPluginManager::engineLocation() result

Also the folder is only created on first usage.
This commit is contained in:
Chocobo1 2018-06-28 16:06:16 +08:00
parent 361afb401b
commit 5c50c5b24d
No known key found for this signature in database
GPG key ID: 210D9C873253A68C

View file

@ -322,13 +322,16 @@ QString SearchPluginManager::pluginsLocation()
QString SearchPluginManager::engineLocation()
{
QString folder = "nova";
if (Utils::ForeignApps::pythonInfo().version.majorNumber() >= 3)
folder = "nova3";
const QString location = Utils::Fs::expandPathAbs(specialFolderLocation(SpecialFolder::Data) + folder);
QDir locationDir(location);
if (!locationDir.exists())
static QString location;
if (location.isEmpty()) {
const QString folder = (Utils::ForeignApps::pythonInfo().version.majorNumber() >= 3)
? "nova3" : "nova";
location = Utils::Fs::expandPathAbs(specialFolderLocation(SpecialFolder::Data) + folder);
const QDir locationDir(location);
locationDir.mkpath(locationDir.absolutePath());
}
return location;
}