tweak Luminance black/white limit to better suit new "color table"

This commit is contained in:
Pablo Gil
2021-08-16 18:32:46 +02:00
parent 4905251a5d
commit 8a881e03af
+1 -1
View File
@@ -89,7 +89,7 @@ Color ColorCoding::GetColor(int c)
Qt::GlobalColor ColorCoding::GetUISelectorColor(const Color &c)
{
if (c.GetRoughLuminance() > 0.66) {
if (c.GetRoughLuminance() > 0.40) {
return Qt::black;
} else {
return Qt::white;