summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterregioninfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llfloaterregioninfo.cpp')
-rwxr-xr-xindra/newview/llfloaterregioninfo.cpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/indra/newview/llfloaterregioninfo.cpp b/indra/newview/llfloaterregioninfo.cpp
index 6d8f8f5587..7272fe79c7 100755
--- a/indra/newview/llfloaterregioninfo.cpp
+++ b/indra/newview/llfloaterregioninfo.cpp
@@ -3588,6 +3588,19 @@ void LLPanelRegionExperiences::processResponse( const LLSD& content )
mAllowed->setExperienceIds(content["allowed"]);
mBlocked->setExperienceIds(content["blocked"]);
mTrusted->setExperienceIds(content["trusted"]);
+
+ if (!mAllowed->getReadonly())
+ {
+ mAllowed->refreshExperienceCounter("RegionInfoAllowedExperiences");
+ }
+ if (!mBlocked->getReadonly())
+ {
+ mBlocked->refreshExperienceCounter("RegionInfoBlockedExperiences");
+ }
+ if (!mTrusted->getReadonly())
+ {
+ mTrusted->refreshExperienceCounter("RegionInfoTrustedExperiences");
+ }
}