summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorkj_sh6042025-12-21 00:41:49 -0500
committerkj_sh6042025-12-21 00:41:49 -0500
commit556166a0beec3a19064d23a60ea28389c4b61206 (patch)
treeef68afc62eff064a64f480a61cd365da5a76e5ce /src
parent5f252fad757f6989a751d3c9849fb0e714759d68 (diff)
refactor: `src/main.go`
Diffstat (limited to 'src')
-rw-r--r--src/main.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.go b/src/main.go
index 76f5af7..a13ffef 100644
--- a/src/main.go
+++ b/src/main.go
@@ -341,9 +341,9 @@ func (app *App) onAboutClicked() {
341 dialog.SetTransientFor(app.window) 341 dialog.SetTransientFor(app.window)
342 dialog.SetProgramName(appTitle) 342 dialog.SetProgramName(appTitle)
343 dialog.SetVersion(appVersion) 343 dialog.SetVersion(appVersion)
344 dialog.SetComments("A color picker with screen color grabbing support") 344 dialog.SetComments("a color picker inspired by agave, but only with the features kj_sh604 actually used")
345 dialog.SetAuthors([]string{"kjagave 2025", "Based on gcolor2 by Ned Haughton"}) 345 dialog.SetAuthors([]string{"kjagave 2025", "kj_sh604"})
346 dialog.SetLicense("GPL-2.0") 346 dialog.SetLicense("0BSD")
347 dialog.Run() 347 dialog.Run()
348 dialog.Destroy() 348 dialog.Destroy()
349} 349}