summaryrefslogtreecommitdiff
path: root/colorNew.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-02-08 13:57:31 -0600
committerJeff Carr <[email protected]>2025-02-08 13:57:31 -0600
commit5827b9ace289a645be2189c12865f05f59a25fca (patch)
treea7e127192f41f5588a29bab43850c6932c360e74 /colorNew.go
parentc4f9bac85eeafb4916b57d6f8953fa930d6d098e (diff)
buttons in dense mode line up correctly
Diffstat (limited to 'colorNew.go')
-rw-r--r--colorNew.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/colorNew.go b/colorNew.go
index b7b908b..3357178 100644
--- a/colorNew.go
+++ b/colorNew.go
@@ -99,10 +99,10 @@ func (tk *guiWidget) setColorButtonDense() {
return
}
tk.color.frame = gocui.AttrNone
- tk.color.fg = gocui.ColorBlue
- tk.color.bg = gocui.AttrNone
- tk.color.selFg = gocui.ColorWhite
- tk.color.selBg = gocui.ColorBlue
+ tk.color.fg = gocui.ColorWhite
+ tk.color.bg = gocui.ColorBlue
+ tk.color.selFg = gocui.ColorBlue
+ tk.color.selBg = gocui.AttrNone
}
func (tk *guiWidget) setColorButton() {