adapt the offset for the new levels

This commit is contained in:
Florian Stinglmayr 2024-04-13 11:49:13 +02:00
parent c20280eb13
commit 3b0492c70f

View File

@ -8,7 +8,7 @@ public class MinusFortyFiveConverter : IValueConverter {
/// <inheritdoc/>
public object Convert(
object value, Type targetType, object parameter, CultureInfo culture) {
return (double)value - 80;
return (double)value - 110;
}
/// <inheritdoc/>