mirror of
https://github.com/lubosz/overte.git
synced 2025-08-07 20:06:02 +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) {
|
if (shouldGoToTutorial) {
|
||||||
DependencyManager::get<AddressManager>()->ifLocalSandboxRunningElse([=]() {
|
DependencyManager::get<AddressManager>()->ifLocalSandboxRunningElse([=]() {
|
||||||
qDebug() << "Home sandbox appears to be running, going to Home.";
|
qDebug() << "Home sandbox appears to be running, going to Home.";
|
||||||
//DependencyManager::get<AddressManager>()->goToLocalSandbox("/tutorial");
|
DependencyManager::get<AddressManager>()->goToLocalSandbox("/tutorial_begin");
|
||||||
DependencyManager::get<AddressManager>()->loadSettings("hifi://sport/tutorial_begin");
|
|
||||||
}, [=]() {
|
}, [=]() {
|
||||||
qDebug() << "Home sandbox does not appear to be running, going to Entry.";
|
qDebug() << "Home sandbox does not appear to be running, going to Entry.";
|
||||||
showHelp();
|
if (firstRun.get()) {
|
||||||
|
showHelp();
|
||||||
|
}
|
||||||
if (addressLookupString.isEmpty()) {
|
if (addressLookupString.isEmpty()) {
|
||||||
DependencyManager::get<AddressManager>()->goToEntry();
|
DependencyManager::get<AddressManager>()->goToEntry();
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue