From 161957e0536c6fbd99b51b4569d3a152b87bfa2f Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sat, 13 Dec 2025 23:10:54 +0900 Subject: [PATCH] feat: add admonition to submit ticket --- dzgui/util/strings.py | 3 ++- dzgui/views/pages/thanks.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) 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)]