diff options
author | sr55 <[email protected]> | 2018-06-15 19:45:17 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-06-15 19:46:51 +0100 |
commit | 090b6a925470ccdf773427c76e90ccc6e0b930f1 (patch) | |
tree | 56d24a31e32efd4d5bed1623b21c86c6f7db3abe | |
parent | 0c377e599c899845712c22da2d3470df98ab14a7 (diff) |
WinGui: Fix a crash in a converter.
-rw-r--r-- | win/CS/HandBrakeWPF/Converters/LongToIntConverter.cs | 2 |
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; } } } |