Fix invalid func name set logo name

Related #2254, #2276
This commit is contained in:
Matthias Hagmann 2024-02-13 08:50:10 +01:00 committed by Peter F. Patel-Schneider
parent 438ea74dba
commit ca24a93005
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ def _create():
about.set_program_name(NAME) about.set_program_name(NAME)
about.set_version(__version__) about.set_version(__version__)
about.set_comments(_('Manages Logitech receivers,\nkeyboards, mice, and tablets.')) about.set_comments(_('Manages Logitech receivers,\nkeyboards, mice, and tablets.'))
about.setloggero_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_copyright('© 2012-2023 Daniel Pavel and contributors to the Solaar project')
about.set_license_type(Gtk.License.GPL_2_0) about.set_license_type(Gtk.License.GPL_2_0)