From f112ce9b54d57c84fde2f858833b497a3c71984b Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 4 Oct 2016 19:34:35 +0900 Subject: Changed angle brackets to parentheses for user disambiguation This fixes a case when another person mentions you by disambiguated name, and this is not highlighted because Riot uses () and Quaternion uses <> to decorate disambiguated names (as well as to check mentions). --- room.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/room.cpp b/room.cpp index b5e6a906..e559bc37 100644 --- a/room.cpp +++ b/room.cpp @@ -321,7 +321,7 @@ QString Room::roomMembername(User *u) const } // In case of more than one namesake, disambiguate with user id. - return username % " <" % u->id() % ">"; + return username % " (" % u->id() % ")"; } QString Room::roomMembername(QString userId) const -- cgit v1.2.3