aboutsummaryrefslogtreecommitdiff
path: root/ui/widget/color.go
diff options
context:
space:
mode:
Diffstat (limited to 'ui/widget/color.go')
-rw-r--r--ui/widget/color.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/widget/color.go b/ui/widget/color.go
index 57f943f..12ee791 100644
--- a/ui/widget/color.go
+++ b/ui/widget/color.go
@@ -30,7 +30,7 @@ var colorNames []string
func init() {
colorNames = make([]string, len(tcell.ColorNames))
i := 0
- for name, _ := range tcell.ColorNames {
+ for name := range tcell.ColorNames {
colorNames[i] = name
i++
}