diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2014-12-22 11:18:58 -0500 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2014-12-22 11:18:58 -0500 |
commit | 79a89f5d921f99ba7a990a1dbf7428d1d3758bc6 (patch) | |
tree | 388c70b9d89ecd2a563b7bb90a8eb0756979abe6 | |
parent | 553b7ede723ceed310f1dbbfba25f5bf555466e1 (diff) |
SL-92 WIP - moving AvatarPosFinalOffset to per-account settings
-rwxr-xr-x | indra/newview/llfloaterhoverheight.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llfloaterhoverheight.cpp b/indra/newview/llfloaterhoverheight.cpp index a858b891a9..9efb168b55 100755 --- a/indra/newview/llfloaterhoverheight.cpp +++ b/indra/newview/llfloaterhoverheight.cpp @@ -81,7 +81,7 @@ void LLFloaterHoverHeight::onSliderMoved(LLUICtrl* ctrl, void* userData) { LLSliderCtrl* sldrCtrl = static_cast<LLSliderCtrl*>(ctrl); F32 value = sldrCtrl->getValueF32(); - LLVector3 offset = gSavedSettings.getVector3("AvatarPosFinalOffset"); + LLVector3 offset = gSavedPerAccountSettings.getVector3("AvatarPosFinalOffset"); offset[2] = value; gAgentAvatarp->mHoverOffset = offset; } |