diff options
author | sr55 <[email protected]> | 2015-05-17 21:01:30 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-05-17 21:01:30 +0000 |
commit | 525d9fae34a7981eb5f6de46135d909551480043 (patch) | |
tree | a38306689787207fbd346fe32e69f261b455f6ec /win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | |
parent | f44ed828e6e1fa5f64d48be8f19bb5525434f263 (diff) |
WinGui: General tidy up and remove the custom styling for the app. The app will now always honour the system defaults.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@7207 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs index d5ed439bb..b16b73573 100644 --- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs @@ -273,8 +273,9 @@ namespace HandBrakeWPF.ViewModels this.userSettingService.SettingChanged += this.UserSettingServiceSettingChanged;
this.Presets = this.presetService.Presets;
- this.CancelScanCommand = new CancelScanCommand(this.scanService);
this.Drives = new BindingList<SourceMenuItem>();
+
+ HandBrakeInstanceManager.Init();
}
#region View Model Properties
@@ -670,11 +671,6 @@ namespace HandBrakeWPF.ViewModels }
/// <summary>
- /// Gets or sets the cancel scan command.
- /// </summary>
- public CancelScanCommand CancelScanCommand { get; set; }
-
- /// <summary>
/// Gets or sets Destination.
/// </summary>
public string Destination
|