From 8f06f65a26e65a05ec5a1a4b450556ee9e45926a Mon Sep 17 00:00:00 2001 From: Anand Sudhir Prayaga Date: Tue, 7 Aug 2018 12:18:31 +0200 Subject: [PATCH] Fix #282 - clocks doesn't change colour --- wtf/utils.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wtf/utils.go b/wtf/utils.go index a2bb778e..b3b69ce0 100644 --- a/wtf/utils.go +++ b/wtf/utils.go @@ -121,8 +121,8 @@ func DefaultFocussedRowColor() string { } func RowColor(module string, idx int) string { - evenKey := fmt.Sprintf("wtf.mods.%s.colors.row.even", module) - oddKey := fmt.Sprintf("wtf.mods.%s.colors.row.odd", module) + evenKey := fmt.Sprintf("wtf.mods.%s.colors.rows.even", module) + oddKey := fmt.Sprintf("wtf.mods.%s.colors.rows.odd", module) if idx%2 == 0 { return Config.UString(evenKey, "white")