Highlight completely nested parts.

This commit is contained in:
AJ
2021-05-18 09:21:33 -04:00
parent 4bb092e0e5
commit 8367d9f400
2 changed files with 11 additions and 2 deletions

View File

@@ -8,7 +8,11 @@
public int Remaining
{
get { return Required - Nested; }
get
{
var x = Required - Nested;
return x < 0 ? 0: x;
}
}
}
}