From 592a7102f6505123fc829397e2e31db7e07fb7fc Mon Sep 17 00:00:00 2001 From: wmayer Date: Sat, 2 Apr 2022 11:06:18 +0200 Subject: [PATCH] App: [skip ci] fix zero-based color model Red-White-Blue --- src/App/ColorModel.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/ColorModel.h b/src/App/ColorModel.h index 4942d1d3a2..cabf78aca1 100644 --- a/src/App/ColorModel.h +++ b/src/App/ColorModel.h @@ -178,7 +178,7 @@ public: ColorModelWhiteRed () : ColorModel(3) { colors[0] = Color(1, 1, 1); colors[1] = Color(1, float(85.0 / 255), 0); - colors[2] = Color(0, 1, 0); + colors[2] = Color(0, 0, 1); } };