1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Merge branch 'master' into handle-gerrit-error-gracefully

This commit is contained in:
Chris Cummer 2018-08-07 20:31:02 -04:00 committed by GitHub
commit be82e99442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -121,8 +121,8 @@ func DefaultFocussedRowColor() string {
} }
func RowColor(module string, idx int) string { func RowColor(module string, idx int) string {
evenKey := fmt.Sprintf("wtf.mods.%s.colors.row.even", module) evenKey := fmt.Sprintf("wtf.mods.%s.colors.rows.even", module)
oddKey := fmt.Sprintf("wtf.mods.%s.colors.row.odd", module) oddKey := fmt.Sprintf("wtf.mods.%s.colors.rows.odd", module)
if idx%2 == 0 { if idx%2 == 0 {
return Config.UString(evenKey, "white") return Config.UString(evenKey, "white")