From d666cc411403b623b2caf0010207e706bea3d76b Mon Sep 17 00:00:00 2001 From: wmayer Date: Sun, 3 Apr 2022 00:58:51 +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 cabf78aca1..98badd2271 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, 0, 1); + colors[2] = Color(1, 0, 0); } };