Scrubbing not working on french culture info
GoogleCodeExporter opened this issue · 0 comments
GoogleCodeExporter commented
Fixed it, just change this line of code int Publish_GUIThreadSafe.cs line 122:
quicktimePlayer.Movie.Time = (int)Convert.ToDouble(parameters[0]) * timescale;
TO ->
quicktimePlayer.Movie.Time = (int)double.Parse(parameters[0],
CultureInfo.InvariantCulture.NumberFormat) * timescale;
And add "using System.Globalization;".
-Cactus
Original issue reported on code.google.com by pierrelu...@gmail.com
on 6 May 2011 at 2:16