diff options
author | sr55 <[email protected]> | 2013-06-29 15:39:35 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-06-29 15:39:35 +0000 |
commit | d6fcba15d04322d3b6495cae70b813be5c3243b4 (patch) | |
tree | a3c31c0769075620903c82e6b412e197457d9d71 /win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs | |
parent | 75e97b7e676869c9ea83200b2f882ba4e0435f23 (diff) |
WinGui: Broke Status display. Fixed.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5618 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs index 4a4aebf43..565dfda76 100644 --- a/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/ShellViewModel.cs @@ -88,28 +88,24 @@ namespace HandBrakeWPF.ViewModels this.ShowMainWindow = true;
this.ShowOptions = false;
this.ShowInstant = false;
- this.MainViewModel.IsInstandHandBrake = false;
}
else if (window == ShellWindow.OptionsWindow)
{
this.ShowOptions = true;
this.ShowMainWindow = false;
this.ShowInstant = false;
- this.MainViewModel.IsInstandHandBrake = false;
}
else if (window == ShellWindow.InstantMainWindow)
{
this.ShowInstant = true;
this.ShowOptions = false;
this.ShowMainWindow = false;
- this.MainViewModel.IsInstandHandBrake = true;
}
else
{
this.ShowMainWindow = true;
this.ShowOptions = false;
this.ShowInstant = false;
- this.MainViewModel.IsInstandHandBrake = false;
}
}
|