Fix SinguReplaceLinks not being respected on various user driven UI

Corrects display for Readonly Notecards, Picks, Group profiles, First/
Second Life, Classifieds, Events, Landmarks, About Land, and Region/Estate

Thanks for giving me the heads-up, Beware
This commit is contained in:
Lirusaito
2019-05-10 18:47:06 -04:00
parent 2a40ca6295
commit 4bb63a9827
11 changed files with 16 additions and 21 deletions

View File

@@ -715,7 +715,7 @@ void LLPanelLandGeneral::refresh()
);
mEditName->setText( parcel->getName() );
mEditDesc->setText( parcel->getDesc() );
mEditDesc->setText( parcel->getDesc(), false );
BOOL for_sale = parcel->getForSale();
@@ -3070,7 +3070,7 @@ void LLPanelLandCovenant::updateCovenantText(const std::string &string)
{
LLViewerTextEditor* editor = self->getChild<LLViewerTextEditor>("covenant_editor");
editor->setHandleEditKeysDirectly(TRUE);
editor->setText(string);
editor->setText(string, false);
}
}