diff options
| -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();  }  ////////////////////////////////////////////////////////////////////////// | 
