Fix FIRE-35185 (disables link rendering while editing picks or 1st life)
parent
33d1961a7e
commit
538dcb0da2
|
|
@ -2770,6 +2770,7 @@ void LLPanelProfileFirstLife::onOpen(const LLSD& key)
|
|||
mDescriptionEdit->setTabStop(false);
|
||||
}
|
||||
mPreviewButton->setVisible(getSelfProfile()); // <AS:Chanayane> Preview button
|
||||
mDescriptionEdit->setParseHTML(!getSelfProfile()); // <AS:Chanayane> Fix FIRE-35185 (disables link rendering while editing picks or 1st life)
|
||||
|
||||
// <FS:Zi> Allow proper texture swatch handling
|
||||
mPicture->setEnabled(getSelfProfile());
|
||||
|
|
|
|||
|
|
@ -712,7 +712,10 @@ void LLPanelProfilePick::processProperties(void* data, EAvatarProcessorType type
|
|||
void LLPanelProfilePick::processProperties(const LLPickData* pick_info)
|
||||
{
|
||||
mIsEditing = false;
|
||||
mPickDescription->setParseHTML(true);
|
||||
// <AS:Chanayane> Fix FIRE-35185 (disables link rendering while editing picks or 1st life)
|
||||
//mPickDescription->setParseHTML(true);
|
||||
mPickDescription->setParseHTML(!getSelfProfile());
|
||||
// </AS:Chanayane>
|
||||
mParcelId = pick_info->parcel_id;
|
||||
setSnapshotId(pick_info->snapshot_id);
|
||||
if (!getSelfProfile())
|
||||
|
|
|
|||
Loading…
Reference in New Issue