diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-25 19:19:28 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-09-25 19:19:28 +0300 |
commit | 4ff5ad507a20eec241a154591872cd4005a981d6 (patch) | |
tree | eeab18f6c0c5555008e4a0a321034904869c2360 | |
parent | 6a32a7551e03fdbec820c602b4d2bfe79bcf2602 (diff) |
SL-13132 Fixed missing 'owner' label
-rw-r--r-- | indra/newview/llpanellandmarkinfo.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/indra/newview/llpanellandmarkinfo.cpp b/indra/newview/llpanellandmarkinfo.cpp index 1992374c35..6751c25fb9 100644 --- a/indra/newview/llpanellandmarkinfo.cpp +++ b/indra/newview/llpanellandmarkinfo.cpp @@ -102,8 +102,6 @@ void LLPanelLandmarkInfo::resetLocation() mLandmarkTitle->setText(LLStringUtil::null); mLandmarkTitleEditor->setText(LLStringUtil::null); mNotesEditor->setText(LLStringUtil::null); - - getChild<LLUICtrl>("parcel_owner_label")->setVisible(FALSE); } // virtual @@ -161,7 +159,6 @@ void LLPanelLandmarkInfo::setInfoType(EInfoType type) mLandmarkTitleEditor->setText(name); } - getChild<LLUICtrl>("parcel_owner_label")->setVisible(TRUE); LLUUID owner_id = parcel->getOwnerID(); if (owner_id.notNull()) { @@ -248,7 +245,6 @@ void LLPanelLandmarkInfo::processParcelInfo(const LLParcelData& parcel_data) else { mParcelOwner->setText(getString("public")); - getChild<LLUICtrl>("parcel_owner_label")->setVisible(FALSE); } LLSD info; |