Don't show names of friends in bold font in radar if RLV showname restriction is active

Ansariel 2014-05-18 23:24:30 +02:00
parent 298be1f85a
commit e7dabe2571
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ void FSRadar::updateRadarList()
// Set friends colors / styles
LLFontGL::StyleFlags nameCellStyle = LLFontGL::NORMAL;
const LLRelationship* relation = LLAvatarTracker::instance().getBuddyInfo(avId);
if (relation && !sFSLegacyRadarFriendColoring)
if (relation && !sFSLegacyRadarFriendColoring && !gRlvHandler.hasBehaviour(RLV_BHVR_SHOWNAMES))
{
nameCellStyle = (LLFontGL::StyleFlags)(nameCellStyle | LLFontGL::BOLD);
}