diff options
author | sr55 <[email protected]> | 2013-09-21 22:12:56 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-09-21 22:12:56 +0000 |
commit | a27b2c176c84d290339f3bb0dc5b9f9961817b30 (patch) | |
tree | a1b38d3c0bb432ec6fcb998d51dc32b397fe88ed /win/CS/HandBrakeWPF/Converters/Options | |
parent | ab17c5c37fcc9a9f8a1617505b3131b9196f1549 (diff) |
WinGui: Added a new tab in Options to host "Video" related settings including hardware acceleration. Only showing the QuickSync options. DXVA/OpenCl options are hidden for now.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@5794 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Converters/Options')
-rw-r--r-- | win/CS/HandBrakeWPF/Converters/Options/OptionsTabConverter.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Converters/Options/OptionsTabConverter.cs b/win/CS/HandBrakeWPF/Converters/Options/OptionsTabConverter.cs index 128596f3f..2911bb4fc 100644 --- a/win/CS/HandBrakeWPF/Converters/Options/OptionsTabConverter.cs +++ b/win/CS/HandBrakeWPF/Converters/Options/OptionsTabConverter.cs @@ -53,6 +53,9 @@ namespace HandBrakeWPF.Converters.Options case OptionsTab.About:
if ((OptionsTab)parameter == OptionsTab.About) return Visibility.Visible;
break;
+ case OptionsTab.Video:
+ if ((OptionsTab)parameter == OptionsTab.Video) return Visibility.Visible;
+ break;
}
}
|