From 1416e2db26eff3bd8282f754c8d909dfe28b1004 Mon Sep 17 00:00:00 2001 From: Greg Pomerantz Date: Sun, 10 May 2026 07:14:20 -0400 Subject: [PATCH] Move icon Y position from +20 to +32 DP below filename - Icon was overlapping the first row of status bar - Increased vertical spacing to avoid overlap --- internal/ui/render.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/ui/render.go b/internal/ui/render.go index 2fb9f32..728bde3 100644 --- a/internal/ui/render.go +++ b/internal/ui/render.go @@ -174,7 +174,7 @@ func (r *Renderer) drawStatusBar(gtx layout.Context, sb StatusBar, _ WindowConst r.drawTruncatedText(gtx, th.Shaper, displayFilename, r.theme.FontSize, reg.X+Dp(8), filenameLineY, availableWidth, spaceForText, color.NRGBA{R: 0, G: 0, B: 0, A: 255}) // Line 2: Icons — positioned 20DP below filename baseline. - iconsLineY := filenameLineY + Dp(20) + iconsLineY := filenameLineY + Dp(32) // Left side: Cut, Copy, Paste icons (always visible) leftX := reg.X + Dp(8)