Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
bf9e1e7e by wurstsalat at 2026-01-10T12:51:45+01:00
fix: ConversationView: Catch exception when computing row actions update
Fixes #12587
- - - - -
1 changed file:
- gajim/gtk/conversation/view.py
Changes:
=====================================
gajim/gtk/conversation/view.py
=====================================
@@ -821,7 +821,11 @@ def _on_message_row_state_flags_changed(
if previous_flags & Gtk.StateFlags.PRELIGHT:
self._message_row_actions.hide_actions()
else:
- success, point = row.compute_point(self, Graphene.Point.zero())
+ try:
+ success, point = row.compute_point(self, Graphene.Point.zero())
+ except GLib.Error:
+ return
+
if not success:
return
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/bf9e1e7ec38a6f271696c9bfb0e7eedb98aa9577
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/bf9e1e7ec38a6f271696c9bfb0e7eedb98aa9577
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]