We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2043d99 commit 1a07bccCopy full SHA for 1a07bcc
src/instancemanager.cpp
@@ -566,6 +566,10 @@ std::shared_ptr<Instance> InstanceManager::currentInstance() const
566
// no instance set
567
return {};
568
}
569
+ } else if (name.compare("portable", Qt::CaseInsensitive) == 0 &&
570
+ portableInstanceExists()) {
571
+ // use portable
572
+ return std::make_shared<Instance>(portablePath(), true, profile);
573
574
575
return std::make_shared<Instance>(instancePath(name), false, profile);
0 commit comments