Flip the boolean expression for the base memory tile color

Subjectively it's easier to read :)
This commit is contained in:
Simon Hausmann 2020-12-09 14:01:56 +01:00
parent 2398d00e6f
commit ce2cfa022d

View file

@ -21,7 +21,7 @@ MemoryTile := Rectangle {
property <bool> solved;
property <resource> image;
color: !solved ? #3960D5 : #34CE57;
color: solved ? #34CE57 : #3960D5;
animate color { duration: 800ms; }
Image {