diff options
author | sr55 <[email protected]> | 2012-09-01 20:07:02 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-09-01 20:07:02 +0000 |
commit | c387255346f64661db1119b644c88311db67ba57 (patch) | |
tree | f71bdd56ab5c0c211bac6b486df3dbd3df9a1ddc /win/CS/HandBrakeWPF | |
parent | 5fcef814d002f988699dfbde188d706f52f62082 (diff) |
WinGui: Fix culture issue with the framerate. Any non round number selection would fail.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4926 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs index 8468f26da..b14e09ff4 100644 --- a/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/VideoViewModel.cs @@ -322,7 +322,7 @@ namespace HandBrakeWPF.ViewModels {
this.IsPeakFramerate = true;
}
- this.Task.Framerate = double.Parse(value);
+ this.Task.Framerate = double.Parse(value, CultureInfo.InvariantCulture);
}
this.NotifyOfPropertyChange(() => this.SelectedFramerate);
|