From 85b11fa9ffd5f72b0b76200d2fa590960273410b Mon Sep 17 00:00:00 2001 From: Grail Finder Date: Sat, 21 Feb 2026 10:15:36 +0300 Subject: Chore: status line, linter complaints --- popups.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'popups.go') diff --git a/popups.go b/popups.go index f584f3c..b0ee4ae 100644 --- a/popups.go +++ b/popups.go @@ -388,7 +388,7 @@ func showFileCompletionPopup(filter string) { app.SetFocus(widget) } -func updateWidgetColors(theme tview.Theme) { +func updateWidgetColors(theme *tview.Theme) { bgColor := theme.PrimitiveBackgroundColor fgColor := theme.PrimaryTextColor borderColor := theme.BorderColor @@ -476,7 +476,7 @@ func showColorschemeSelectionPopup() { tview.Styles = theme go func() { app.QueueUpdateDraw(func() { - updateWidgetColors(theme) + updateWidgetColors(&theme) }) }() } -- cgit v1.2.3