diff options
author | sr55 <[email protected]> | 2020-07-31 21:49:24 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2020-07-31 21:49:24 +0100 |
commit | d13644e79b5e6688a46773d1d7fd6e936f8ca9a4 (patch) | |
tree | 54c82e1e74ca976aa4fa1b58ee9c1bad729e753d /win/CS/HandBrakeWPF/Views | |
parent | c4842f3d09637f2f868dd08192dc8c72ff11e16b (diff) |
WinGui: Update the UI to allow passthru of metadata to be disabled. This utilises the change 2677f9fe9e91f9dfeccaf8c265615a703e20efa5
This is a new preference in Preferences -> Output Files -> Metadata
There is no change to the previous metadata passthru behaviour. It's simply now possible to turn it off.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/OptionsView.xaml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/OptionsView.xaml b/win/CS/HandBrakeWPF/Views/OptionsView.xaml index 6bb5316ad..fcb860f44 100644 --- a/win/CS/HandBrakeWPF/Views/OptionsView.xaml +++ b/win/CS/HandBrakeWPF/Views/OptionsView.xaml @@ -239,6 +239,16 @@ <ComboBox Width="200" ItemsSource="{Binding FileOverwriteBehaviourList, Converter={StaticResource enumComboConverter}}" SelectedIndex="{Binding SelectedOverwriteBehaviour}" HorizontalAlignment="Left" />
</StackPanel>
</StackPanel>
+
+
+ <TextBlock Text="{x:Static Properties:Resources.Options_Metadata}" FontSize="14" Margin="0,20,0,10"/>
+ <StackPanel Orientation="Vertical" Margin="20,0,0,0">
+ <StackPanel Orientation="Horizontal" Margin="0,0,0,0">
+ <CheckBox Content="{x:Static Properties:Resources.Options_PassthruMetadata}" IsChecked="{Binding PassthruMetadata}" ToolTip="{x:Static Properties:Resources.Options_PassthruMetadataTooltip}" />
+ </StackPanel>
+ </StackPanel>
+
+
</StackPanel>
</StackPanel>
|