summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Views/AudioView.xaml
diff options
context:
space:
mode:
authorsr55 <[email protected]>2018-10-15 22:31:50 +0100
committersr55 <[email protected]>2018-10-15 22:32:05 +0100
commitacee00072b04e9a86f9238fd1430e33e3b08a5d1 (patch)
tree95c333e9e60e4cf3d056d1bbe5fca12798156598 /win/CS/HandBrakeWPF/Views/AudioView.xaml
parentdead9539dccd4c43fba40c07ead4324b14379296 (diff)
WinGui: Fix a number of style inheritance issues.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/AudioView.xaml')
-rw-r--r--win/CS/HandBrakeWPF/Views/AudioView.xaml4
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Views/AudioView.xaml b/win/CS/HandBrakeWPF/Views/AudioView.xaml
index 818498549..f1d689770 100644
--- a/win/CS/HandBrakeWPF/Views/AudioView.xaml
+++ b/win/CS/HandBrakeWPF/Views/AudioView.xaml
@@ -111,7 +111,7 @@
SelectionMode="Extended">
<ListBox.ItemContainerStyle>
- <Style TargetType="ListBoxItem">
+ <Style TargetType="ListBoxItem" BasedOn="{StaticResource {x:Type ListBoxItem}}">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
<Setter Property="Margin" Value="0,0,0,1" />
</Style>
@@ -216,7 +216,7 @@
<ToggleButton Name="advancedOptionsToggle" VerticalAlignment="Center" Grid.Column="8" Grid.Row="0" Grid.ColumnSpan="2" Margin="5,0,0,0"
Padding="3,0" Height="22" HorizontalAlignment="Left" >
<ToggleButton.Style>
- <Style TargetType="{x:Type ToggleButton}">
+ <Style TargetType="{x:Type ToggleButton}" BasedOn="{StaticResource {x:Type ToggleButton}}">
<Setter Property="Content" Value="Show"/>
<Setter Property="FontWeight" Value="Bold" />
<Style.Triggers>