summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/being/being.cpp2
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);
}
}