diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llstartup.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/newview/llstartup.cpp b/linden/indra/newview/llstartup.cpp index 4fd4daa..39d9ab6 100644 --- a/linden/indra/newview/llstartup.cpp +++ b/linden/indra/newview/llstartup.cpp | |||
@@ -1938,7 +1938,9 @@ bool idle_startup() | |||
1938 | LLFloaterActiveSpeakers::showInstance(); | 1938 | LLFloaterActiveSpeakers::showInstance(); |
1939 | } | 1939 | } |
1940 | 1940 | ||
1941 | if (gSavedSettings.getBOOL("BeaconsEnabled")) | 1941 | static BOOL* sBeaconsEnabled = rebind_llcontrol<BOOL>("BeaconsEnabled", &gSavedSettings, true); |
1942 | |||
1943 | if (*sBeaconsEnabled) | ||
1942 | { | 1944 | { |
1943 | LLFloaterBeacons::showInstance(); | 1945 | LLFloaterBeacons::showInstance(); |
1944 | } | 1946 | } |