Skip to content

Commit

Permalink
Fix #282 - clocks doesn't change colour
Browse files Browse the repository at this point in the history
  • Loading branch information
anandsudhir committed Aug 7, 2018
1 parent de4e1e3 commit 8f06f65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wtf/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit 8f06f65

Please sign in to comment.