diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-04 19:34:35 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2016-10-04 19:34:35 +0900 |
commit | f112ce9b54d57c84fde2f858833b497a3c71984b (patch) | |
tree | 6895e88a62ba839bef59f918ec7d3a9de238b591 | |
parent | 50a92291b0650747c931259976a488c37504024a (diff) | |
download | libquotient-f112ce9b54d57c84fde2f858833b497a3c71984b.tar.gz libquotient-f112ce9b54d57c84fde2f858833b497a3c71984b.zip |
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).
-rw-r--r-- | room.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |