aboutsummaryrefslogtreecommitdiff
path: root/ui/widget/color.go
diff options
context:
space:
mode:
authorTulir Asokan <tulir@maunium.net>2018-04-01 10:28:46 +0300
committerTulir Asokan <tulir@maunium.net>2018-04-02 13:47:20 +0300
commit2ba2fde3966211845b1117c85b27e3c947b6307f (patch)
tree1cbe071081a1986b9f063128d5e8def42f347027 /ui/widget/color.go
parent1e082f9715a2061a7c6aec1efb93e2abc25fc591 (diff)
Gofmt
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++
}