diff options
author | sr55 <[email protected]> | 2018-10-15 22:31:50 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2018-10-15 22:32:05 +0100 |
commit | acee00072b04e9a86f9238fd1430e33e3b08a5d1 (patch) | |
tree | 95c333e9e60e4cf3d056d1bbe5fca12798156598 /win/CS/HandBrakeWPF/Views/QueueView.xaml | |
parent | dead9539dccd4c43fba40c07ead4324b14379296 (diff) |
WinGui: Fix a number of style inheritance issues.
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/QueueView.xaml')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/QueueView.xaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/win/CS/HandBrakeWPF/Views/QueueView.xaml b/win/CS/HandBrakeWPF/Views/QueueView.xaml index 34f959cf8..57efc39a2 100644 --- a/win/CS/HandBrakeWPF/Views/QueueView.xaml +++ b/win/CS/HandBrakeWPF/Views/QueueView.xaml @@ -198,14 +198,14 @@ </ListBox.ContextMenu>
<ListBox.ItemContainerStyle>
- <Style TargetType="{x:Type ListBoxItem}">
+ <Style TargetType="{x:Type ListBoxItem}" BasedOn="{StaticResource {x:Type ListBoxItem}}">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
<Setter Property="Margin" Value="0,0,0,1" />
<Setter Property="ToolTip">
<Setter.Value>
<Grid MaxWidth="650" Margin="0,5,0,5" Style="{StaticResource LongToolTipHolder}">
<Grid.Resources>
- <Style TargetType="TextBlock">
+ <Style TargetType="TextBlock" BasedOn="{StaticResource {x:Type TextBlock}}">
<Setter Property="Margin" Value="0,5,0,5" />
</Style>
</Grid.Resources>
@@ -273,7 +273,7 @@ </Image.LayoutTransform>
<Image.Style>
- <Style TargetType="{x:Type Image}">
+ <Style TargetType="{x:Type Image}" BasedOn="{StaticResource {x:Type Image}}">
<Style.Triggers>
<DataTrigger Binding="{Binding Status, Converter={StaticResource enumComboConverter}}" Value="Waiting">
<Setter Property="Source" Value="Images\Movies.png" />
|