From 8b517467885f4082fc50a13f25ed43c1090ca6c4 Mon Sep 17 00:00:00 2001 From: Brad Hefta-Gaub Date: Mon, 9 May 2016 18:49:29 -0700 Subject: [PATCH] don't show help or login on first run --- interface/src/Application.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 5b0d5c65ce..14df366def 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -702,9 +702,6 @@ Application::Application(int& argc, char** argv, QElapsedTimer& startupTimer) : // The value will be 0 if the user blew away settings this session, which is both a feature and a bug. UserActivityLogger::getInstance().launch(applicationVersion(), _previousSessionCrashed, sessionRunTime.get()); - // once the event loop has started, check and signal for an access token - QMetaObject::invokeMethod(&accountManager, "checkAndSignalForAccessToken", Qt::QueuedConnection); - auto addressManager = DependencyManager::get(); // use our MyAvatar position and quat for address manager path @@ -1327,8 +1324,6 @@ void Application::initializeGL() { // update before the first render update(0); - - InfoView::show(INFO_HELP_PATH, true); } FrameTimingsScriptingInterface _frameTimingsScriptingInterface;