diff options
Diffstat (limited to 'src/being/being.cpp')
-rw-r--r-- | src/being/being.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/being/being.cpp b/src/being/being.cpp index 3b012fd90..d447221f8 100644 --- a/src/being/being.cpp +++ b/src/being/being.cpp @@ -5586,5 +5586,11 @@ void Being::setGroupId(const int id) { mGroupId = id; showGmBadge(id != 0); + const bool gm = GroupDb::getHighlightName(mGroupId); + if (mIsGM != gm) + { + mIsGM = gm; + updateColors(); + } } } |