diff options
author | sr55 <[email protected]> | 2013-08-22 17:17:15 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-08-22 17:17:15 +0000 |
commit | 723ce53bb4e6fb48c04c0e9fc9ab72e3270d3b29 (patch) | |
tree | 50efbb3baf387021ffbfd7ae15c1089468ac3a11 /win/CS/HandBrakeWPF/ViewModels | |
parent | c0ad015d6ef51b4edf229d98803d35c781e8b67f (diff) |
WinGui: Cosmetic fixes around the new libhb scanning.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5733 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index d673e6983..8279c9adf 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -1360,21 +1360,6 @@ namespace HandBrakeWPF.ViewModels MessageBoxImage.Information);
}
- /// <summary>
- /// The debug scan log.
- /// </summary>
- public void DebugScanLog()
- {
- OpenFileDialog dialog = new OpenFileDialog();
-
- dialog.ShowDialog();
-
- if (File.Exists(dialog.FileName))
- {
- this.scanService.DebugScanLog(dialog.FileName);
- }
- }
-
#endregion
#region Main Window Public Methods
@@ -1916,7 +1901,6 @@ namespace HandBrakeWPF.ViewModels Math.Round(e.PercentComplete).ToString(CultureInfo.InvariantCulture),
out percent);
-
Execute.OnUIThread(
() =>
{
|