diff options
author | James Cook <james@lindenlab.com> | 2009-12-17 12:06:29 -0800 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2009-12-17 12:06:29 -0800 |
commit | 7755f70836be0a0cc6ecb0763a6a42d3164eb19b (patch) | |
tree | 1f6d294b88e21ab889d31609755a87fbcdb76b3d /indra/newview | |
parent | c84b6a28a0f99961d115f41d7238869dc92e728c (diff) |
EXT-3535 Don't show the tutorial on first log-in
Discussed with Esbee and Howard - we're not doing a web-based
tutorial. If we want it back, we'll have to do another viewer
release.
Diffstat (limited to 'indra/newview')
-rw-r--r-- | indra/newview/llstartup.cpp | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/indra/newview/llstartup.cpp b/indra/newview/llstartup.cpp index 539673ab9e..73e7d99815 100644 --- a/indra/newview/llstartup.cpp +++ b/indra/newview/llstartup.cpp @@ -1634,11 +1634,15 @@ bool idle_startup() gSavedSettings.setString("TutorialURL", tutorial_url.asString()); } - LLSD use_tutorial = (*it)["use_tutorial"]; - if(use_tutorial.asString() == "true") - { - show_hud = true; - } + // For Viewer 2.0 we are not using the web-based tutorial + // If we reverse that decision, put this code back and use + // login.cgi to send a different URL with content that matches + // the Viewer 2.0 UI. + //LLSD use_tutorial = (*it)["use_tutorial"]; + //if(use_tutorial.asString() == "true") + //{ + // show_hud = true; + //} } } // Either we want to show tutorial because this is the first login |