Skip to content
Snippets Groups Projects
Commit 21d8cc88 authored by Richard Linden's avatar Richard Linden
Browse files

EXP-847 FIX As a user, I would like to see the How To floater appear the first...

EXP-847 FIX As a user, I would like to see the How To floater appear the first time I log in to basic mode
parent caff254c
No related branches found
No related tags found
No related merge requests found
...@@ -71,9 +71,18 @@ void LLFloaterHelpBrowser::buildURLHistory() ...@@ -71,9 +71,18 @@ void LLFloaterHelpBrowser::buildURLHistory()
} }
} }
void LLFloaterHelpBrowser::onOpen(const LLSD& key)
{
gSavedSettings.setBOOL("HelpFloaterOpen", TRUE);
}
//virtual //virtual
void LLFloaterHelpBrowser::onClose(bool app_quitting) void LLFloaterHelpBrowser::onClose(bool app_quitting)
{ {
if (!app_quitting)
{
gSavedSettings.setBOOL("HelpFloaterOpen", FALSE);
}
// really really destroy the help browser when it's closed, it'll be recreated. // really really destroy the help browser when it's closed, it'll be recreated.
destroy(); // really destroy this dialog on closure, it's relatively heavyweight. destroy(); // really destroy this dialog on closure, it's relatively heavyweight.
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment