From b4811f602d0b38742c88f675b68ac564b6ed4b85 Mon Sep 17 00:00:00 2001 From: "Peter F. Patel-Schneider" Date: Thu, 2 May 2024 10:17:58 -0400 Subject: [PATCH] ui: fix bug with logo in about window --- lib/solaar/ui/about.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/solaar/ui/about.py b/lib/solaar/ui/about.py index 6303d27b..e10c7f94 100644 --- a/lib/solaar/ui/about.py +++ b/lib/solaar/ui/about.py @@ -37,6 +37,7 @@ def _create(): about.set_version(__version__) about.set_comments(_("Manages Logitech receivers,\nkeyboards, mice, and tablets.")) about.set_icon_name(NAME.lower()) + about.set_logo_icon_name(NAME.lower()) about.set_copyright("© 2012-2023 Daniel Pavel and contributors to the Solaar project") about.set_license_type(Gtk.License.GPL_2_0)