src/glcompiler.cpp

changeset 1397
5d5c11af0268
parent 1392
0541d9b21968
child 1400
ae83213bdd63
--- a/src/glcompiler.cpp	Sun Jun 10 15:53:21 2018 +0300
+++ b/src/glcompiler.cpp	Sun Jun 10 16:04:38 2018 +0300
@@ -179,7 +179,7 @@
 
 	case VboSubclass::RegularColors:
 		// For normal colors, use the polygon's color.
-		if (polygon.color == MainColor)
+		if (LDColor {polygon.color} == MainColor)
 		{
 			// If it's the main color, use the polygon owner's color.
 			if (polygonOwner->color() == MainColor)
@@ -192,7 +192,7 @@
 				color = polygonOwner->color().faceColor();
 			}
 		}
-		else if (polygon.color == EdgeColor)
+		else if (LDColor {polygon.color} == EdgeColor)
 		{
 			// Edge color is black, unless we have a dark background, in which case lines need to be bright.
 			color = luma(config::backgroundColor()) > 40 ? Qt::black : Qt::white;

mercurial