Skip to content
Snippets Groups Projects
Commit 8fae869b authored by Daniel Brötzmann's avatar Daniel Brötzmann
Browse files

fix: Notifications: Change Gdk window hints on Windows

Fixes #11008
parent 74a085aa
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment