From 37096910fc7580ac74b4b809723074820ed9e1bc Mon Sep 17 00:00:00 2001 From: Ryan Huffman Date: Thu, 22 Sep 2016 08:59:45 -0700 Subject: [PATCH] Fix tutorial begin location --- interface/src/Application.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 7a505c96c0..2c562d317b 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1302,11 +1302,12 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer) : if (shouldGoToTutorial) { DependencyManager::get()->ifLocalSandboxRunningElse([=]() { qDebug() << "Home sandbox appears to be running, going to Home."; - //DependencyManager::get()->goToLocalSandbox("/tutorial"); - DependencyManager::get()->loadSettings("hifi://sport/tutorial_begin"); + DependencyManager::get()->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()->goToEntry(); } else {