Highlight completely nested parts.
This commit is contained in:
@@ -8,7 +8,11 @@
|
||||
|
||||
public int Remaining
|
||||
{
|
||||
get { return Required - Nested; }
|
||||
get
|
||||
{
|
||||
var x = Required - Nested;
|
||||
return x < 0 ? 0: x;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user