fix: f-string in dialog title

This commit is contained in:
aclist 2025-10-03 01:20:40 +09:00
parent 239f806f7e
commit 9a37cebe47

View File

@ -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,
)