diff options
author | AndreyL ProductEngine <alihatskiy@productengine.com> | 2017-06-01 15:30:49 +0300 |
---|---|---|
committer | AndreyL ProductEngine <alihatskiy@productengine.com> | 2017-06-01 15:30:49 +0300 |
commit | 13cddfdfdd8c42367af8a197e1f2deefc986495b (patch) | |
tree | be16266b60f76f498b90a5dad21bb7f8c7810e05 /indra | |
parent | 19c3f47e00e348739eaf31685c8ea804704a08e5 (diff) |
Mac buildfix
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llfloatertools.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indra/newview/llfloatertools.cpp b/indra/newview/llfloatertools.cpp index 5b7cfb242e..2869256d09 100644 --- a/indra/newview/llfloatertools.cpp +++ b/indra/newview/llfloatertools.cpp @@ -646,14 +646,12 @@ void LLFloaterTools::updatePopup(LLCoordGL center, MASK mask) mRadioGroupMove->setValue("radio move"); } else if ((mask == MASK_VERTICAL) || - gGrabBtnVertical && - (mask != MASK_SPIN)) + (gGrabBtnVertical && (mask != MASK_SPIN))) { mRadioGroupMove->setValue("radio lift"); } else if ((mask == MASK_SPIN) || - gGrabBtnSpin && - (mask != MASK_VERTICAL)) + (gGrabBtnSpin && (mask != MASK_VERTICAL))) { mRadioGroupMove->setValue("radio spin"); } |