From 3108882c7b4607e2a23dcbd0e5787309df3ab62f Mon Sep 17 00:00:00 2001 From: Stu Leak Date: Sun, 4 Jan 2026 05:35:11 -0500 Subject: [PATCH] Refine donation copy row and labels --- main.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/main.go b/main.go index b59ff2a..c4a5714 100644 --- a/main.go +++ b/main.go @@ -562,7 +562,7 @@ func (s *appState) showAbout() { feedbackLabel.Wrapping = fyne.TextWrapWord btcAddress := "bc1qcq5hmtvckhhh9c6y3gvm9wu9856fmet25yfr0v" - btcLabel := widget.NewLabel(fmt.Sprintf("Bitcoin (BTC): %s", btcAddress)) + btcLabel := widget.NewLabel("Bitcoin (BTC):") copyBg := canvas.NewRectangle(utils.MustHex("#344256")) copyBg.CornerRadius = 8 copyBg.SetMinSize(fyne.NewSize(72, 32)) @@ -573,14 +573,15 @@ func (s *appState) showAbout() { dialog.ShowInformation("Copied", "Bitcoin address copied to clipboard", s.window) }) copyRow := container.NewBorder(nil, nil, nil, copyBtn, btcLabel) + addressLabel := widget.NewLabel(btcAddress) mainContent := container.NewVBox( versionText, devText, widget.NewLabel(""), widget.NewLabel("Support Development"), - widget.NewLabel("Support VideoTools development (optional):"), copyRow, + addressLabel, feedbackLabel, )