Daniel Brötzmann pushed to branch gtk4 at gajim / gajim


Commits:
1f53b823 by wurstsalat at 2024-10-24T20:56:05+02:00
cfix: CallWindow: Set correct gesture propagation phase

- - - - -


1 changed file:

- gajim/gtk/call_window.py


Changes:

=====================================
gajim/gtk/call_window.py
=====================================
@@ -73,7 +73,10 @@ def __init__(self, account: str, resource_jid: JID) -> None:
             self._ui.button_pound,
         ]
         for button in buttons:
-            gesture_primary_click = Gtk.GestureClick(button=Gdk.BUTTON_PRIMARY)
+            gesture_primary_click = Gtk.GestureClick(
+                button=Gdk.BUTTON_PRIMARY,
+                propagation_phase=Gtk.PropagationPhase.CAPTURE,
+            )
             self._connect(gesture_primary_click, 'pressed', 
self._on_button_press)
             self._connect(gesture_primary_click, 'released', 
self._on_button_release)
             button.add_controller(gesture_primary_click)



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/1f53b823ce32e540a8da3ecc2e47abd628f4ca25

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/1f53b823ce32e540a8da3ecc2e47abd628f4ca25
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