diff options
author | sr55 <[email protected]> | 2020-10-24 16:52:16 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-10-24 16:52:16 +0100 |
commit | 030ecc52477a7636aeab96a5496b640884b85f1b (patch) | |
tree | ba023cc872eeb1ab5c34304db74071c634599021 /win/CS/HandBrakeWPF/Views | |
parent | 85bba8d17e5398183ba380225fe6b121a57e75f2 (diff) |
WinGui: Simultaneous encode improvements.
- Improvements to the hardware resource manager that determines simultaneous job processing.
- Reliability improvements in multiple log file handling.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/OptionsView.xaml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index 7cf09423a..8b0005f1c 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -451,13 +451,19 @@ <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}" />
+
+ </StackPanel>
+ <StackPanel Orientation="Vertical">
+ <TextBlock Text="{x:Static Properties:Resources.OptionsView_SimultaneousHardwareLimitNotice}" Visibility="{Binding IsSimultaneousEncodesSupported, Converter={StaticResource boolToVisConverter}, ConverterParameter=false}"
+ Margin="10,0,0,0" TextWrapping="Wrap" FontStyle="Italic" />
- <TextBlock Text="{x:Static Properties:Resources.OptionsView_NotSupported}" Margin="5,0,0,0" Visibility="{Binding IsSimultaneousEncodesSupported, Converter={StaticResource boolToVisConverter}, ConverterParameter=true}" />
+ <TextBlock Text="{x:Static Properties:Resources.OptionsView_NotSupported}" Margin="10,0,0,0" Visibility="{Binding IsSimultaneousEncodesSupported, Converter={StaticResource boolToVisConverter}, ConverterParameter=true}" />
</StackPanel>
+
</StackPanel>
- <StackPanel Orientation="Vertical" Margin="0,10,0,10">
+ <StackPanel Orientation="Vertical" Margin="0,15,0,10">
<TextBlock Text="{x:Static Properties:Resources.Options_Logging}" FontSize="14" Margin="0,0,0,10"/>
|