diff --git a/indra/newview/llpanelavatar.cpp b/indra/newview/llpanelavatar.cpp index e20ececab..285b47c4f 100644 --- a/indra/newview/llpanelavatar.cpp +++ b/indra/newview/llpanelavatar.cpp @@ -1482,8 +1482,8 @@ void LLPanelAvatar::processProperties(void* data, EAvatarProcessorType type) if (pAvatarNotes && (mAvatarID == pAvatarNotes->target_id) && (pAvatarNotes->target_id != LLUUID::null)) { auto notes = getChildView("notes edit"); - notes->setEnabled("notes edit", true); - notes->setValue("notes edit", pAvatarNotes->notes); + notes->setEnabled(true); + notes->setValue(pAvatarNotes->notes); mHaveNotes = true; mLastNotes = pAvatarNotes->notes; }