Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
8fae869b by wurstsalat at 2022-06-24T11:22:07+02:00
fix: Notifications: Change Gdk window hints on Windows
Fixes #11008
- - - - -
1 changed file:
- gajim/gtk/notification.py
Changes:
=====================================
gajim/gtk/notification.py
=====================================
@@ -162,10 +162,11 @@ class PopupNotification(Gtk.Window):
def __init__(self, event: events.Notification, timeout: int) -> None:
Gtk.Window.__init__(self)
- self.set_type_hint(Gdk.WindowTypeHint.NOTIFICATION)
+ self.set_type_hint(Gdk.WindowTypeHint.UTILITY)
self.set_focus_on_map(False)
self.set_accept_focus(False)
self.set_skip_taskbar_hint(True)
+ self.set_skip_pager_hint(True)
self.set_decorated(False)
self.set_keep_above(True)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/8fae869b19fbc5d156696f3103999c78206b6772
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/8fae869b19fbc5d156696f3103999c78206b6772
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