Visual improvements

This commit is contained in:
Andre Beging
2017-09-16 15:47:11 +02:00
parent 3f90366caf
commit a2e081ccdb
5 changed files with 11 additions and 7 deletions

View File

@@ -42,9 +42,9 @@ namespace DebtMgr.Converters
}
if (doubleValue < 0.001 && doubleValue > -0.001)
return new SolidColorBrush(Colors.Green);
return new SolidColorBrush(Colors.Black);
if(doubleValue > 0)
if (doubleValue > 0)
return new SolidColorBrush(Colors.Green);
if (doubleValue < 0)