Philipp Hörist pushed to branch master at gajim / gajim


Commits:
224e3061 by Philipp Hörist at 2026-07-02T20:29:07+02:00
fix: ActivityFeed: Show all reactions in color

- - - - -


1 changed file:

- gajim/gtk/activity_list.py


Changes:

=====================================
gajim/gtk/activity_list.py
=====================================
@@ -891,7 +891,10 @@ def from_event(cls, event: events.ReactionUpdated) -> 
Reaction:
 
         assert event.message is not None
         assert event.emojis is not None
-        emojis = " ".join(event.emojis)
+
+        # Add emoji presentation selector, otherwise depending on the font
+        # emojis might be displayed in its text variant
+        emojis = " ".join({f"{e}\ufe0f" for e in event.emojis})
 
         subject = _(
             "%(contact)s reacted with %(reaction)s to your message 
'%(message)s'"



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/224e30614caeda60c2f68452531e1ecb531b6664

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/224e30614caeda60c2f68452531e1ecb531b6664
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to