aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLatchezar Tzvetkoff <tzvetkoff@users.noreply.github.com>2020-10-04 18:07:40 +0300
committerGitHub <noreply@github.com>2020-10-04 17:07:40 +0200
commit1655b26e8ade77ed56a6a94157a859aa69cfad26 (patch)
tree4f516e30bdf42b79207daa8247ff0159d059cac2
parent11f94afc23fa96cd4d605d188584685f0bb3908c (diff)
downloadwee-slack-1655b26e8ade77ed56a6a94157a859aa69cfad26.tar.gz
Don't display the typing indicator for muted conversations (#794)
-rw-r--r--wee_slack.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wee_slack.py b/wee_slack.py
index eb69b3f..ca6339e 100644
--- a/wee_slack.py
+++ b/wee_slack.py
@@ -1834,7 +1834,7 @@ class SlackChannel(SlackChannelCommon):
w.buffer_set(self.channel_buffer, "hotlist", "1")
def formatted_name(self, style="default", typing=False, present=None):
- show_typing = typing and config.channel_name_typing_indicator
+ show_typing = typing and not self.muted and config.channel_name_typing_indicator
if style == "sidebar" and show_typing:
prepend = ">"
elif self.type == "group" or self.type == "private":