From 1b1cf51528084003ecaf5718e0310ec9abcce261 Mon Sep 17 00:00:00 2001 From: Greg Pomerantz Date: Sun, 10 May 2026 06:39:22 -0400 Subject: [PATCH] =?UTF-8?q?Remove=20search/conflict=20icon=20references=20?= =?UTF-8?q?=E2=80=94=20only=20cut/copy/paste=20exist=20-=20StatusBar=20now?= =?UTF-8?q?=20only=20draws=20cut,=20copy,=20paste=20PNG=20icons=20-=20Remo?= =?UTF-8?q?ved=20code=20that=20tried=20to=20draw=20non-existent=20search.p?= =?UTF-8?q?ng=20and=20conflict.png?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/ui/render.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/internal/ui/render.go b/internal/ui/render.go index c0847e2..64a4467 100644 --- a/internal/ui/render.go +++ b/internal/ui/render.go @@ -203,14 +203,6 @@ func (r *Renderer) drawStatusBar(gtx layout.Context, sb StatusBar, _ WindowConst r.drawPng(gtx, r.icons["paste"], leftX, iconY, iconSize, iconSize, color.NRGBA{R: 0, G: 0, B: 0, A: 255}) leftX += Dp(12) - // Right side: Conflict (conditional), Search (always visible) - rightX := reg.X + reg.W - Dp(8) - if sb.ConflictIcon { - rightX -= Dp(28) - r.drawPng(gtx, r.icons["conflict"], rightX, iconY, iconSize, iconSize, color.NRGBA{R: 0, G: 0, B: 0, A: 255}) - } - rightX -= Dp(28) - r.drawPng(gtx, r.icons["search"], rightX, iconY, iconSize, iconSize, color.NRGBA{R: 0, G: 0, B: 0, A: 255}) c.Pop() }