diff options
author | dolphin <dolphin@lindenlab.com> | 2013-09-24 19:10:43 -0700 |
---|---|---|
committer | dolphin <dolphin@lindenlab.com> | 2013-09-24 19:10:43 -0700 |
commit | 09964ec6ede2c9dba5954448bff6b2da2dc179af (patch) | |
tree | d77702dba541a88c5b29e148d5cb1565fa1abbb8 /indra/newview/llfloaterexperienceprofile.cpp | |
parent | 48e1e10fd69aaea6ef22feb2518e80a120e9f999 (diff) |
Created an experience specific permissions dialog.
Diffstat (limited to 'indra/newview/llfloaterexperienceprofile.cpp')
-rw-r--r-- | indra/newview/llfloaterexperienceprofile.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/llfloaterexperienceprofile.cpp b/indra/newview/llfloaterexperienceprofile.cpp index 01af6b1cab..f99e20f7e0 100644 --- a/indra/newview/llfloaterexperienceprofile.cpp +++ b/indra/newview/llfloaterexperienceprofile.cpp @@ -417,7 +417,9 @@ void LLFloaterExperienceProfile::refreshExperience( const LLSD& experience ) if(properties & LLExperienceCache::PROPERTY_GRID) { topPanel->setVisible(TRUE); - getChild<LLTextBox>(TF_GRID_WIDE)->setVisible(TRUE); + child=getChild<LLTextBox>(TF_GRID_WIDE); + child->setVisible(TRUE); + child->setText(LLTrans::getString("GRID_WIDE")); } value=experience[LLExperienceCache::METADATA].asString(); |