diff options
author | sr55 <[email protected]> | 2015-01-30 22:36:33 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2015-01-30 22:36:33 +0000 |
commit | 9ade44ee4777791b6c19109e52c6a1a3878d126a (patch) | |
tree | 7b33050eeec750e55033fcd314a55fd96ccf76c5 /win/CS/HandBrakeWPF/Views | |
parent | c84b5b21193131d41633ce97e95f99d4aead811f (diff) |
WinGui: Disable support for HandBrakeCLI in preparation of removing the legacy code.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6836 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/OptionsView.xaml | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index f2fe2fa02..2315eea55 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -328,19 +328,11 @@ <StackPanel Orientation="Vertical" Margin="0,10,0,20" Visibility="Visible">
- <TextBlock Text="Encode Engine" FontSize="14" Margin="0,0,0,10"/>
+ <TextBlock Text="Encode Engine" FontSize="14" Margin="0,0,0,10" Visibility="Collapsed"/>
<StackPanel Orientation="Vertical" Margin="20,0,0,0">
-
- <CheckBox Content="Use LibHB instead of HandBrakeCLI.exe for encoding." Margin="0,5,0,5" IsChecked="{Binding EnableLibHb}" />
- <TextBlock Text="LibHB" FontWeight="Bold" />
- <TextBlock Text="Accessing LibHB directly, allows the app to pause and restart encodes. Process isolation is not currently supported, so a crash will prevent the rest of the queue from completing."
- TextWrapping="Wrap" Margin="10,0,10,5"/>
- <TextBlock Text="HandBrakeCLI.exe" FontWeight="Bold" />
- <TextBlock Text="Using HandBrakeCLI.exe provides process isolation so a crash during an encode won't prevent the rest of the queue from completing. You won't however be able to pause encodes."
- TextWrapping="Wrap" Margin="10,0,10,5"/>
-
-
+
+
<CheckBox Content="Enable Process Isolation (Run Encodes via an intermediate service)" Margin="20,10,0,0" IsChecked="{Binding EnableProcessIsolation}" Visibility="Collapsed" />
<StackPanel Orientation="Horizontal" Margin="0,10,0,0" Visibility="Collapsed">
<TextBlock Text="Server Port:" VerticalAlignment="Center" />
|