From 9a37cebe4780c5ba2f355d2910a6d732724205ad Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Fri, 3 Oct 2025 01:20:40 +0900 Subject: [PATCH] fix: f-string in dialog title --- helpers/ui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/ui.py b/helpers/ui.py index df896fe..a6a6b42 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -3238,7 +3238,7 @@ class LanDialog(Gtk.MessageDialog): buttons=Gtk.ButtonsType.OK_CANCEL, text="Scan LAN servers", secondary_text="Select the query port", - title="{appname}", + title=f"{app_name} - Dialog", modal=True, )