Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
7b64058e by wurstsalat at 2022-12-12T11:05:45+01:00
fix: Fonts: Fix emoji rendering on MacOS
- - - - -
1 changed file:
- gajim/gtk/application.py
Changes:
=====================================
gajim/gtk/application.py
=====================================
@@ -220,8 +220,8 @@ def _get_remaining_entry():
return [option]
def _startup(self) -> None:
- if sys.platform == 'win32':
- # Changing the PANGOCAIRO_BACKEND is necessary on Windows
+ if sys.platform in ('win32', 'darwin'):
+ # Changing the PANGOCAIRO_BACKEND is necessary on Windows/MacOS
# to render colored emoji glyphs
os.environ['PANGOCAIRO_BACKEND'] = 'fontconfig'
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/7b64058e2ca9e5c9b3ed5e08d1083376bf7c797a
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/7b64058e2ca9e5c9b3ed5e08d1083376bf7c797a
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits