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