diff options
author | McCabe Maxsted | 2010-08-25 07:38:55 -0700 |
---|---|---|
committer | McCabe Maxsted | 2010-08-26 11:27:34 -0700 |
commit | f2ccb2e64190673629d59b3ee1b318e7940b2471 (patch) | |
tree | 6e69e855c1bb2075617081392f7ec9a6bf81f152 /linden/indra/newview/llfloatertools.cpp | |
parent | Fixed event names overrunning search window (diff) | |
download | meta-impy-f2ccb2e64190673629d59b3ee1b318e7940b2471.zip meta-impy-f2ccb2e64190673629d59b3ee1b318e7940b2471.tar.gz meta-impy-f2ccb2e64190673629d59b3ee1b318e7940b2471.tar.bz2 meta-impy-f2ccb2e64190673629d59b3ee1b318e7940b2471.tar.xz |
Made disable max build constraints also disable max position spinner values
Diffstat (limited to '')
-rw-r--r-- | linden/indra/newview/llfloatertools.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linden/indra/newview/llfloatertools.cpp b/linden/indra/newview/llfloatertools.cpp index 4f31c3c..7a9efcb 100644 --- a/linden/indra/newview/llfloatertools.cpp +++ b/linden/indra/newview/llfloatertools.cpp | |||
@@ -186,6 +186,10 @@ void LLFloaterTools::updateToolsSizeLimits() | |||
186 | getChild<LLSpinCtrl>("Scale X")->setMaxValue(F32_MAX); | 186 | getChild<LLSpinCtrl>("Scale X")->setMaxValue(F32_MAX); |
187 | getChild<LLSpinCtrl>("Scale Y")->setMaxValue(F32_MAX); | 187 | getChild<LLSpinCtrl>("Scale Y")->setMaxValue(F32_MAX); |
188 | getChild<LLSpinCtrl>("Scale Z")->setMaxValue(F32_MAX); | 188 | getChild<LLSpinCtrl>("Scale Z")->setMaxValue(F32_MAX); |
189 | |||
190 | getChild<LLSpinCtrl>("Pos X")->setMaxValue(F32_MAX); | ||
191 | getChild<LLSpinCtrl>("Pos Y")->setMaxValue(F32_MAX); | ||
192 | getChild<LLSpinCtrl>("Pos Z")->setMaxValue(F32_MAX); | ||
189 | } | 193 | } |
190 | else | 194 | else |
191 | { | 195 | { |