diff options
| author | Richard Linden <none@none> | 2013-11-12 18:47:55 -0800 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-11-12 18:47:55 -0800 | 
| commit | 0eba8e8f23ecbdbfcb9a409dd91a1e2a6c4d3f00 (patch) | |
| tree | 8f4af698c7496199d1a76d28fc92ea4ee2538148 | |
| parent | 6ddfc8031c73f342cf8459445a20cd50ceb3efba (diff) | |
SH-4620 FIX Droplist and spinner overlap edit field and “Browse” button in the Upload Model window
bad visibility setting logic
| -rwxr-xr-x | indra/newview/llfloatermodelpreview.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/indra/newview/llfloatermodelpreview.cpp b/indra/newview/llfloatermodelpreview.cpp index 424fa293da..16c37f8bee 100755 --- a/indra/newview/llfloatermodelpreview.cpp +++ b/indra/newview/llfloatermodelpreview.cpp @@ -4650,7 +4650,7 @@ void LLModelPreview::updateLodControls(S32 lod)  		for (U32 i = 0; i < num_lod_controls; ++i)  		{ -			mFMP->childSetVisible(lod_controls[i] + lod_name[lod], true); +			mFMP->childSetVisible(lod_controls[i] + lod_name[lod], false);  		}  	}  	else if (lod_mode == USE_LOD_ABOVE) // use LoD above | 
