summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--win/CS/HandBrakeWPF/Converters/LongToIntConverter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Converters/LongToIntConverter.cs b/win/CS/HandBrakeWPF/Converters/LongToIntConverter.cs
index 97b44338e..9633505fd 100644
--- a/win/CS/HandBrakeWPF/Converters/LongToIntConverter.cs
+++ b/win/CS/HandBrakeWPF/Converters/LongToIntConverter.cs
@@ -28,7 +28,7 @@ namespace HandBrakeWPF.Converters
public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
{
- throw new NotImplementedException();
+ return value;
}
}
}