Skip to content
Snippets Groups Projects
Commit a27774ee authored by Chad Pilkey's avatar Chad Pilkey
Browse files

don't always show userlist gear to moderators

parent 37967514
No related branches found
No related tags found
No related merge requests found
......@@ -204,7 +204,7 @@
var amIMod:Boolean = UsersUtil.amIModerator();
if (data != null) {
settingsBtn.visible = rolledOver && !UsersUtil.isBreakout() && (amIMod || options.allowUserLookup);
settingsBtn.visible = rolledOver && !UsersUtil.isBreakout() && ((amIMod && !data.me) || options.allowUserLookup);
if (!data.inVoiceConf) {
muteImg.visible = false;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment