From d8bb1c323289c2afbd53277bd3e75cb568c90921 Mon Sep 17 00:00:00 2001 From: sunglocto Date: Wed, 3 Sep 2025 07:59:23 +0100 Subject: [PATCH] change name of credits button from license to credits --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 3b1cb5c..d714a52 100644 --- a/main.go +++ b/main.go @@ -754,7 +754,7 @@ func main() { dialog.ShowInformation("about pi", fmt.Sprintf("the XMPP client from hell\n\npi is an experimental XMPP client\nwritten by Sunglocto in Go.\n\nVersion %s", version), w) }) - licensesbtn := fyne.NewMenuItem("license", func() { + licensesbtn := fyne.NewMenuItem("credits", func() { CreditsWindow(fyne.CurrentApp(), fyne.NewSize(800, 400)).Show() })