summaryrefslogtreecommitdiff
path: root/indra/newview/llviewerfloaterreg.cpp
diff options
context:
space:
mode:
authorBrad Payne (Vir Linden) <vir@lindenlab.com>2021-09-29 12:14:51 +0100
committerBrad Payne (Vir Linden) <vir@lindenlab.com>2021-09-29 12:14:51 +0100
commite16105cab07047cadf0f5a4eae9335c066b5053c (patch)
treeb16ad3e462def549f81380438e8c18465a26cdba /indra/newview/llviewerfloaterreg.cpp
parent187d5862398820e28a8935ce9058f444f4963153 (diff)
SL-15999 - don't create floaters in noninteractive mode
Diffstat (limited to 'indra/newview/llviewerfloaterreg.cpp')
-rw-r--r--indra/newview/llviewerfloaterreg.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/newview/llviewerfloaterreg.cpp b/indra/newview/llviewerfloaterreg.cpp
index 5a05f89758..98b76328de 100644
--- a/indra/newview/llviewerfloaterreg.cpp
+++ b/indra/newview/llviewerfloaterreg.cpp
@@ -192,6 +192,10 @@ LLFloaterOpenHandler gFloaterOpenHandler;
void LLViewerFloaterReg::registerFloaters()
{
+ if (gNonInteractive)
+ {
+ return;
+ }
// *NOTE: Please keep these alphabetized for easier merges
LLFloaterAboutUtil::registerFloater();