diff options
author | sr55 <[email protected]> | 2013-09-07 09:56:03 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-09-07 09:56:03 +0000 |
commit | 4447dcccebd9f184709bc193a61f7a38df6f251a (patch) | |
tree | bfca1199de759782826fa070ebbde3558c997059 /win/CS | |
parent | 3f47fd810214d03a05eeaa7b46193398c59a030a (diff) |
OpenCL: Temporarily disable the OpenCL/HWD button visibility code. Since the GUI now uses libhb, it can't detect opencl status right now.opencl
git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/opencl@5773 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/MainView.xaml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/win/CS/HandBrakeWPF/Views/MainView.xaml b/win/CS/HandBrakeWPF/Views/MainView.xaml index cadccfcca..18b308b7b 100644 --- a/win/CS/HandBrakeWPF/Views/MainView.xaml +++ b/win/CS/HandBrakeWPF/Views/MainView.xaml @@ -546,19 +546,19 @@ VerticalAlignment="Center"
Content="OpenCL Support"
IsChecked="{Binding Path=CurrentTask.OpenCLSupport}" IsEnabled="True"
- Visibility="{Binding SupportOpenCL,
+
+ /><!--Visibility="{Binding SupportOpenCL,
Converter={StaticResource boolToVisConverter},
- ConverterParameter=true}"
- />
+ ConverterParameter=true}"-->
<CheckBox Name="HWD"
Margin="8,0,0,0"
VerticalAlignment="Center"
Content="HWD Support"
IsChecked="{Binding Path=CurrentTask.HWDSupport}" IsEnabled="True"
- Visibility="{Binding SupportHardwareDecoding,
+
+ /> <!--Visibility="{Binding SupportHardwareDecoding,
Converter={StaticResource boolToVisConverter},
- ConverterParameter=true}"
- />
+ ConverterParameter=true}"-->
</StackPanel>
</StackPanel>
|