diff options
| author | maxim_productengine <mnikolenko@productengine.com> | 2019-02-15 14:55:56 +0200 | 
|---|---|---|
| committer | maxim_productengine <mnikolenko@productengine.com> | 2019-02-15 14:55:56 +0200 | 
| commit | d6a4504cd86de0ffa86c7b0341f729e913b1a15e (patch) | |
| tree | ea7aa1ec2de2357bbc1db706c3aa075a1b794e16 /indra | |
| parent | fb085b8e61832bfc5222636f96fb802cec5ca9a2 (diff) | |
SL-10549 FIXED The 'Save' button remains disabled after changing the classified image
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/newview/llpanelclassified.cpp | 8 | 
1 files changed, 3 insertions, 5 deletions
| diff --git a/indra/newview/llpanelclassified.cpp b/indra/newview/llpanelclassified.cpp index b9b97f4cce..6d0c30fbf3 100644 --- a/indra/newview/llpanelclassified.cpp +++ b/indra/newview/llpanelclassified.cpp @@ -628,12 +628,9 @@ BOOL LLPanelClassifiedEdit::postBuild()  {  	LLPanelClassifiedInfo::postBuild(); -	LLTextureCtrl* snapshot = getChild<LLTextureCtrl>("classified_snapshot"); -	snapshot->setOnSelectCallback(boost::bind(&LLPanelClassifiedEdit::onChange, this)); -  	LLUICtrl* edit_icon = getChild<LLUICtrl>("edit_icon"); -	snapshot->setMouseEnterCallback(boost::bind(&LLPanelClassifiedEdit::onTexturePickerMouseEnter, this, edit_icon)); -	snapshot->setMouseLeaveCallback(boost::bind(&LLPanelClassifiedEdit::onTexturePickerMouseLeave, this, edit_icon)); +	mSnapshotCtrl->setMouseEnterCallback(boost::bind(&LLPanelClassifiedEdit::onTexturePickerMouseEnter, this, edit_icon)); +	mSnapshotCtrl->setMouseLeaveCallback(boost::bind(&LLPanelClassifiedEdit::onTexturePickerMouseLeave, this, edit_icon));  	edit_icon->setVisible(false);  	LLLineEditor* line_edit = getChild<LLLineEditor>("classified_name"); @@ -1130,6 +1127,7 @@ void LLPanelClassifiedEdit::onTexturePickerMouseLeave(LLUICtrl* ctrl)  void LLPanelClassifiedEdit::onTextureSelected()  {  	setSnapshotId(mSnapshotCtrl->getValue().asUUID()); +	onChange();  }  ////////////////////////////////////////////////////////////////////////// | 
