diff sat_frontends/primitivus/contact_list.py @ 2993:d58dccd9e4b4

primitivus (contact list): fixed notifications counter for mentions: notifications counter was not properly counting mentions and was not changing colour as expected, this patch fixes this and changed colour to the more readable light red when not focused. fixes 319
author Goffi <goffi@goffi.org>
date Mon, 08 Jul 2019 19:11:29 +0200
parents 003b8b4b56a7
children ab2696e34d29
line wrap: on
line diff
--- a/sat_frontends/primitivus/contact_list.py	Mon Jul 08 09:20:06 2019 +0200
+++ b/sat_frontends/primitivus/contact_list.py	Mon Jul 08 19:11:29 2019 +0200
@@ -224,12 +224,12 @@
         notifs = list(
             self.host.getNotifs(entity, exact_jid=special, profile=self.profile)
         )
-        if notifs:
-            header = [("cl_notifs", u"({})".format(len(notifs))), u" "]
-            if list(
+        mentions = list(
                 self.host.getNotifs(entity.bare, C.NOTIFY_MENTION, profile=self.profile)
-            ):
-                header = ("cl_mention", header)
+            )
+        if notifs or mentions:
+            attr = 'cl_mention' if mentions else 'cl_notifs'
+            header = [(attr, u"({})".format(len(notifs) + len(mentions))), u" "]
         else:
             header = u""