diff options
author | sr55 <[email protected]> | 2017-04-10 17:03:32 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-04-10 17:03:32 +0100 |
commit | 0a8dde9d78fc57ef19e53f50405e9a3124802267 (patch) | |
tree | 5df830153170aba79732971a07d250c7193f29ac /win/CS/HandBrakeWPF/Views | |
parent | d2f892878a87fa6b62996f76c1e4bd9f6c0212e7 (diff) |
WinGui: Audio Defaults: Improve the Mixdown dropdown. Only show supported mixdowns and automatically select the highest available mixdown if the encoder is limited and doesn't support the current selection.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/AudioDefaultsView.xaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/AudioDefaultsView.xaml b/win/CS/HandBrakeWPF/Views/AudioDefaultsView.xaml index b5848d5f9..5fdbaa59c 100644 --- a/win/CS/HandBrakeWPF/Views/AudioDefaultsView.xaml +++ b/win/CS/HandBrakeWPF/Views/AudioDefaultsView.xaml @@ -270,7 +270,7 @@ <TextBlock Grid.Row="0" Grid.Column="6" VerticalAlignment="Center" FontWeight="Bold" Text="{x:Static Properties:ResourcesUI.AudioView_Mixdown}" Visibility="{Binding IsPassthru, Converter={StaticResource boolToVisConverter}, ConverterParameter=true}" /> <ComboBox Grid.Row="0" Grid.Column="7" Height="22" Width="120" Margin="5,0,5,0" HorizontalAlignment="Stretch" - ItemsSource="{Binding DataContext.Mixdowns, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type UserControl}}}" + ItemsSource="{Binding Mixdowns}" SelectedItem="{Binding MixDown}" DisplayMemberPath="DisplayName" Visibility="{Binding IsPassthru, Converter={StaticResource boolToVisConverter}, ConverterParameter=true}" /> |