]> granicus.if.org Git - handbrake/commitdiff
WinGui: Fix a crash in a converter.
authorsr55 <sr55.hb@outlook.com>
Fri, 15 Jun 2018 18:45:17 +0000 (19:45 +0100)
committersr55 <sr55.hb@outlook.com>
Fri, 15 Jun 2018 18:46:51 +0000 (19:46 +0100)
win/CS/HandBrakeWPF/Converters/LongToIntConverter.cs

index 97b44338e53a6efc0687122b13b98a785702610d..9633505fd64eaee3ec28fb724a70f63b1bf20358 100644 (file)
@@ -28,7 +28,7 @@ namespace HandBrakeWPF.Converters
 
         public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
         {
-            throw new NotImplementedException();
+            return value;
         }
     }
 }