diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llfloaterbeacons.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linden/indra/newview/llfloaterbeacons.cpp b/linden/indra/newview/llfloaterbeacons.cpp index 2dee000..d636776 100644 --- a/linden/indra/newview/llfloaterbeacons.cpp +++ b/linden/indra/newview/llfloaterbeacons.cpp | |||
@@ -69,18 +69,18 @@ BOOL LLFloaterBeacons::postBuild() | |||
69 | } | 69 | } |
70 | 70 | ||
71 | // Needed to make the floater visibility toggle the beacons. | 71 | // Needed to make the floater visibility toggle the beacons. |
72 | // Too bad we can't just add control_name="BeaconAlwaysOn" to the XML. | 72 | // Too bad we can't just add control_name="BeaconsEnabled" to the XML. |
73 | void LLFloaterBeacons::open() | 73 | void LLFloaterBeacons::open() |
74 | { | 74 | { |
75 | LLFloater::open(); | 75 | LLFloater::open(); |
76 | gSavedSettings.setBOOL( "BeaconAlwaysOn", TRUE); | 76 | gSavedSettings.setBOOL( "BeaconsEnabled", TRUE); |
77 | } | 77 | } |
78 | void LLFloaterBeacons::close(bool app_quitting) | 78 | void LLFloaterBeacons::close(bool app_quitting) |
79 | { | 79 | { |
80 | LLFloater::close(app_quitting); | 80 | LLFloater::close(app_quitting); |
81 | if(!app_quitting) | 81 | if(!app_quitting) |
82 | { | 82 | { |
83 | gSavedSettings.setBOOL( "BeaconAlwaysOn", FALSE); | 83 | gSavedSettings.setBOOL( "BeaconsEnabled", FALSE); |
84 | } | 84 | } |
85 | } | 85 | } |
86 | 86 | ||