diff options
author | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-08-11 18:21:10 +0300 |
---|---|---|
committer | Mnikolenko Productengine <mnikolenko@productengine.com> | 2017-08-11 18:21:10 +0300 |
commit | 9408490ac596a3ddee2cd0a2e1443e96cc6c0198 (patch) | |
tree | b6731f3a771231cba441562c6d00cf6fe51e2b2d | |
parent | 4cd7e3e2f1c5cb278c6c4dfa22ed3f00c5cdcbc8 (diff) |
MAINT-7566 Better define 6016 for MAX_SNAPSHOT_IMAGE_SIZE
-rw-r--r-- | indra/newview/llfloatersnapshot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llfloatersnapshot.cpp b/indra/newview/llfloatersnapshot.cpp index ba3106913c..2d0002dcd8 100644 --- a/indra/newview/llfloatersnapshot.cpp +++ b/indra/newview/llfloatersnapshot.cpp @@ -314,8 +314,8 @@ void LLFloaterSnapshot::Impl::updateControls(LLFloaterSnapshotBase* floater) } else { - width_ctrl->setMaxValue(6016); - height_ctrl->setMaxValue(6016); + width_ctrl->setMaxValue(MAX_SNAPSHOT_IMAGE_SIZE); + height_ctrl->setMaxValue(MAX_SNAPSHOT_IMAGE_SIZE); } } |