summaryrefslogtreecommitdiff
path: root/indra
diff options
context:
space:
mode:
Diffstat (limited to 'indra')
-rw-r--r--indra/newview/llpanelpermissions.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llpanelpermissions.cpp b/indra/newview/llpanelpermissions.cpp
index 225e2fb22c..1de73ec1f3 100644
--- a/indra/newview/llpanelpermissions.cpp
+++ b/indra/newview/llpanelpermissions.cpp
@@ -1009,7 +1009,7 @@ void LLPanelPermissions::updateOwnerName(const LLUUID& owner_id, const LLAvatarN
mOwnerCacheConnection.disconnect();
}
std::string name = owner_name.getCompleteName();
- shorten_name(name, style_params, mLabelOwnerName->getTextPixelWidth());
+ shorten_name(name, style_params, mLabelOwnerName->getVisibleTextRect().getWidth());
mLabelOwnerName->setText(name, style_params);
}
@@ -1020,7 +1020,7 @@ void LLPanelPermissions::updateCreatorName(const LLUUID& creator_id, const LLAva
mCreatorCacheConnection.disconnect();
}
std::string name = creator_name.getCompleteName();
- shorten_name(name, style_params, mLabelCreatorName->getTextPixelWidth());
+ shorten_name(name, style_params, mLabelCreatorName->getVisibleTextRect().getWidth());
mLabelCreatorName->setText(name, style_params);
}