diff options
author | sr55 <[email protected]> | 2020-07-03 19:20:32 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-07-03 19:21:03 +0100 |
commit | 35e106c48f28b0769599a1757be89e97ff9d908f (patch) | |
tree | f2f708e2aac60692ec1ac6ae73817d37dea9b434 /win/CS/HandBrakeWPF/Views | |
parent | d3ea0cbb24a5da4fac6ead6656aacf09c13e5479 (diff) |
WinGui: Disable simulatenous encode support on low end systems. Increase the limit to 8 where a system has > 8 physical cores.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/OptionsView.xaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index d5ad61f31..6bb5316ad 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -438,9 +438,11 @@ <TextBox Text="{Binding RemoteServicePort}" Width="100" IsEnabled="{Binding RemoteServiceEnabled}" />
</StackPanel>
- <StackPanel Orientation="Horizontal" Margin="10,10,0,0" >
+ <StackPanel Orientation="Horizontal" Margin="10,10,0,0" IsEnabled="{Binding IsSimultaneousEncodesSupported}" >
<TextBlock Text="{x:Static Properties:Resources.OptionsView_SimultaneousEncodes}" VerticalAlignment="Center"/>
<ComboBox ItemsSource="{Binding SimultaneousEncodesList}" SelectedItem="{Binding SimultaneousEncodes}" IsEnabled="{Binding RemoteServiceEnabled}" />
+
+ <TextBlock Text="{x:Static Properties:Resources.OptionsView_NotSupported}" Margin="5,0,0,0" Visibility="{Binding IsSimultaneousEncodesSupported, Converter={StaticResource boolToVisConverter}, ConverterParameter=true}" />
</StackPanel>
</StackPanel>
|