summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/ViewModels
diff options
context:
space:
mode:
authorsr55 <[email protected]>2014-05-14 19:50:33 +0000
committersr55 <[email protected]>2014-05-14 19:50:33 +0000
commit95d5a9b0988d64f8a8e061a8fbb4e02b0375b8c3 (patch)
treec5fd899b745ccb9535d6abf3b6cc4f7daf0270d1 /win/CS/HandBrakeWPF/ViewModels
parent37848c2b97eda7b116a79d1b520377bd4978e6ba (diff)
WinGui: Another fix to the pause feature.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6190 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels')
-rw-r--r--win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
index 4445a546b..bcdb9ff27 100644
--- a/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
+++ b/win/CS/HandBrakeWPF/ViewModels/MainViewModel.cs
@@ -595,7 +595,7 @@ namespace HandBrakeWPF.ViewModels
set
{
this.isEncoding = value;
- this.CanPause = value;
+ this.CanPause = value && this.encodeService.CanPause;
this.NotifyOfPropertyChange(() => this.IsEncoding);
}
}