From e7dabe257147db0fca636399620d0e90f767cf35 Mon Sep 17 00:00:00 2001 From: Ansariel Date: Sun, 18 May 2014 23:24:30 +0200 Subject: [PATCH] Don't show names of friends in bold font in radar if RLV showname restriction is active --- indra/newview/fsradar.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/fsradar.cpp b/indra/newview/fsradar.cpp index 3a0e186cec..66d3bb6584 100644 --- a/indra/newview/fsradar.cpp +++ b/indra/newview/fsradar.cpp @@ -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); }