Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
82e0b144 by wurstsalat at 2026-01-11T00:18:26+01:00
fix: Conversation: Prevent avatar popover menu from moving message row content
Fixes #12588
- - - - -
1 changed file:
- gajim/gtk/conversation/rows/message.py
Changes:
=====================================
gajim/gtk/conversation/rows/message.py
=====================================
@@ -101,6 +101,10 @@ def __init__(self, contact: ChatContactT, message:
Message) -> None:
self._bottom_box = Gtk.Box(spacing=6)
+ # halign START prevents the avatar popover menu from moving grid
content,
+ # see https://dev.gajim.org/gajim/gajim/-/issues/12588
+ self.grid.set_halign(Gtk.Align.START)
+
self.grid.attach(self._avatar_box, 0, 0, 1, 2)
self.grid.attach(self._meta_box, 1, 0, 1, 1)
self.grid.attach(self._bottom_box, 1, 1, 1, 1)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/82e0b144cc7e314b0939faaf210cbf5c7b9ae8b1
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/82e0b144cc7e314b0939faaf210cbf5c7b9ae8b1
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]