diff options
author | Latchezar Tzvetkoff <tzvetkoff@users.noreply.github.com> | 2020-10-04 18:07:40 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-04 17:07:40 +0200 |
commit | 1655b26e8ade77ed56a6a94157a859aa69cfad26 (patch) | |
tree | 4f516e30bdf42b79207daa8247ff0159d059cac2 | |
parent | 11f94afc23fa96cd4d605d188584685f0bb3908c (diff) | |
download | wee-slack-1655b26e8ade77ed56a6a94157a859aa69cfad26.tar.gz |
Don't display the typing indicator for muted conversations (#794)
-rw-r--r-- | wee_slack.py | 2 |
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": |