diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs index ac12baf2c..e2a294009 100644 --- a/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs +++ b/win/CS/HandBrakeWPF/ViewModels/SummaryViewModel.cs @@ -48,6 +48,8 @@ namespace HandBrakeWPF.ViewModels private bool isPreviousPreviewControlVisible; private bool isNextPreviewControlVisible; + private bool showPreview; + public SummaryViewModel(IScan scanService, IUserSettingService userSettingService) { this.scanService = scanService; @@ -174,6 +176,20 @@ namespace HandBrakeWPF.ViewModels } } + public bool ShowPreview + { + get + { + return this.showPreview; + } + set + { + if (value == this.showPreview) return; + this.showPreview = value; + this.NotifyOfPropertyChange(() => this.ShowPreview); + } + } + #endregion #region Task Properties @@ -492,6 +508,8 @@ namespace HandBrakeWPF.ViewModels // Preview this.PreviewInfo = string.Format(ResourcesUI.SummaryView_PreviewInfo, this.selectedPreview, this.userSettingService.GetUserSetting<int>(UserSettingConstants.PreviewScanCount)); this.NotifyOfPropertyChange(() => this.PreviewInfo); + + this.ShowPreview = this.userSettingService.GetUserSetting<bool>(UserSettingConstants.ShowPreviewOnSummaryTab); } private string GetFilterDescription() |