summaryrefslogtreecommitdiff
path: root/indra/newview/llviewermenu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llviewermenu.cpp')
-rw-r--r--indra/newview/llviewermenu.cpp11
1 files changed, 8 insertions, 3 deletions
diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp
index 1825c03255..f732b0fda0 100644
--- a/indra/newview/llviewermenu.cpp
+++ b/indra/newview/llviewermenu.cpp
@@ -5372,13 +5372,17 @@ class LLShowFloater : public view_listener_t
else if (floater_name == "help in-world")
{
#if LL_LIBXUL_ENABLED
- LLFloaterHtml::getInstance()->show( "in-world_help" );
+ const bool open_app_slurls = true;
+ LLFloaterHtml::getInstance()->show(
+ "in-world_help", open_app_slurls );
#endif
}
else if (floater_name == "help additional")
{
#if LL_LIBXUL_ENABLED
- LLFloaterHtml::getInstance()->show( "additional_help" );
+ const bool open_app_slurls = true;
+ LLFloaterHtml::getInstance()->show(
+ "additional_help", open_app_slurls );
#endif
}
else if (floater_name == "complaint reporter")
@@ -7169,7 +7173,8 @@ void handle_load_from_xml(void*)
void handle_slurl_test(void*)
{
- LLFloaterHtml::getInstance()->show("http://secondlife.com/app/search/slurls.html", "SLURL Test");
+ LLFloaterHtml::getInstance()->show(
+ "http://secondlife.com/app/search/slurls.html", "SLURL Test", true);
}
void handle_rebake_textures(void*)