summaryrefslogtreecommitdiff
path: root/src/being
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2018-03-04 01:39:30 +0300
committerAndrei Karas <akaras@inbox.ru>2018-03-04 01:39:30 +0300
commit44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0 (patch)
tree16ef6000be72c8959672d1210e89f595a55925a5 /src/being
parentb889e7fe2d2b1162bad9cf39831e1becf3d9e480 (diff)
downloadplus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.tar.gz
plus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.tar.bz2
plus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.tar.xz
plus-44ef6547161dd3cd2e1bb4053bb5e8619e6dc0d0.zip
Add support for hightlight attribute in groups.xml
This attribute allow to highlight gm groups based on groups.xml
Diffstat (limited to 'src/being')
-rw-r--r--src/being/being.cpp6
-rw-r--r--src/being/localplayer.cpp7
2 files changed, 7 insertions, 6 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();
+ }
}
}
diff --git a/src/being/localplayer.cpp b/src/being/localplayer.cpp
index 9f805b21a..240228068 100644
--- a/src/being/localplayer.cpp
+++ b/src/being/localplayer.cpp
@@ -422,19 +422,14 @@ void LocalPlayer::setGroupId(const int id)
{
Being::setGroupId(id);
- if (id > 0)
+ if (mIsGM != 0)
{
- setGM(true);
if (chatWindow != nullptr)
{
chatWindow->loadGMCommands();
chatWindow->showGMTab();
}
}
- else
- {
- setGM(false);
- }
if (statusWindow != nullptr)
statusWindow->updateLevelLabel();
}