diff --git a/dzgui/util/strings.py b/dzgui/util/strings.py index c472474..ca9d277 100644 --- a/dzgui/util/strings.py +++ b/dzgui/util/strings.py @@ -343,7 +343,8 @@ thanks = Thanks( header = "# Special thanks", description = ( "This page recognizes beta testers, collaborators, code " - "contributors, and sponsors of the project in alphabetical order." + "contributors, and sponsors of the project in alphabetical order.\n" + "If you wish to be removed from this list, please submit a ticket." ), users = [ "bongjutsu", diff --git a/dzgui/views/pages/thanks.py b/dzgui/views/pages/thanks.py index 018a077..9009e89 100644 --- a/dzgui/views/pages/thanks.py +++ b/dzgui/views/pages/thanks.py @@ -24,7 +24,7 @@ class Thanks(Gtk.Box): header.set_markup(label) self.add(header) - description = Gtk.Label(label=thanks.description) + description = Gtk.Label(label=thanks.description, justify=Gtk.Justification.CENTER) self.add(description) users = [f"- {user}" for user in sorted(thanks.users, key=str.lower)]