mirror of
https://github.com/lubosz/overte.git
synced 2025-04-23 05:24:06 +02:00
Fix tutorial begin location
This commit is contained in:
parent
0f187dc34a
commit
37096910fc
1 changed files with 4 additions and 3 deletions
|
@ -1302,11 +1302,12 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer) :
|
|||
if (shouldGoToTutorial) {
|
||||
DependencyManager::get<AddressManager>()->ifLocalSandboxRunningElse([=]() {
|
||||
qDebug() << "Home sandbox appears to be running, going to Home.";
|
||||
//DependencyManager::get<AddressManager>()->goToLocalSandbox("/tutorial");
|
||||
DependencyManager::get<AddressManager>()->loadSettings("hifi://sport/tutorial_begin");
|
||||
DependencyManager::get<AddressManager>()->goToLocalSandbox("/tutorial_begin");
|
||||
}, [=]() {
|
||||
qDebug() << "Home sandbox does not appear to be running, going to Entry.";
|
||||
showHelp();
|
||||
if (firstRun.get()) {
|
||||
showHelp();
|
||||
}
|
||||
if (addressLookupString.isEmpty()) {
|
||||
DependencyManager::get<AddressManager>()->goToEntry();
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue