diff options
author | pavelkproductengine <pavelkproductengine@lindenlab.com> | 2016-08-25 17:48:27 +0300 |
---|---|---|
committer | pavelkproductengine <pavelkproductengine@lindenlab.com> | 2016-08-25 17:48:27 +0300 |
commit | b22fc7f470398817056abd3c0ada256f8039c708 (patch) | |
tree | 3caa0f108595eabd8dbac7a61b03835ee440fa6e /indra/llimage | |
parent | c37b822abff1a77150a334711d8484025e8c1436 (diff) |
MAINT-6476 VOB - User can add any size image to an Outfit Gallery outfit folders
Diffstat (limited to 'indra/llimage')
-rw-r--r-- | indra/llimage/llimagedimensionsinfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llimage/llimagedimensionsinfo.cpp b/indra/llimage/llimagedimensionsinfo.cpp index 5bf3f29b3c..a5e546e977 100644 --- a/indra/llimage/llimagedimensionsinfo.cpp +++ b/indra/llimage/llimagedimensionsinfo.cpp @@ -201,7 +201,7 @@ bool LLImageDimensionsInfo::getImageDimensionsJpeg() cinfo.out_color_space = JCS_RGB; jpeg_start_decompress (&cinfo); - mHeight = cinfo.output_width; + mWidth = cinfo.output_width; mHeight = cinfo.output_height; jpeg_destroy_decompress(&cinfo); |