Fixes Success/Failure colors in Appearance

* Fixes the mapping function index_to_color_which
* Fixes #13073
This commit is contained in:
Janus 2016-11-14 19:38:08 +01:00
parent 2740a716ea
commit 586734d609
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ index_to_color_which(int32 index)
return (color_which)(index + 1);
else {
return (color_which)(index + B_SUCCESS_COLOR
- kColorWhichCount - 3);
- kColorWhichCount + 3);
}
}