From c513a630f4e378e40bd8b85b8322cfd58b2a557b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= Date: Sat, 4 Apr 2026 03:58:10 +0200 Subject: [PATCH] Set window icon This ensures that the notes manager and the preferences dialog has the proper window icon. --- usr/lib/sticky/sticky.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/usr/lib/sticky/sticky.py b/usr/lib/sticky/sticky.py index d47e2fe..97ca439 100755 --- a/usr/lib/sticky/sticky.py +++ b/usr/lib/sticky/sticky.py @@ -752,6 +752,9 @@ def do_activate(self): Gtk.Application.do_activate(self) + GLib.set_prgname("sticky") + Gtk.Window.set_default_icon_name("sticky") + self.settings = Gio.Settings(schema_id=SCHEMA) self.dummy_window = Gtk.Window(title=_("Notes"), default_height=1, default_width=1, decorated=False, deletable=False, name='dummy-window')