Skip to content

Commit 10b04a9

Browse files
Fix StaticResource BackgroundLightBrush that should be DynamicResource
1 parent ff0875c commit 10b04a9

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Lite/Windows/CollectionLogWindow.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</Grid.RowDefinitions>
3434

3535
<!-- Header -->
36-
<Border Grid.Row="0" Background="{StaticResource BackgroundLightBrush}" Padding="10" Margin="10,10,10,0" CornerRadius="4">
36+
<Border Grid.Row="0" Background="{DynamicResource BackgroundLightBrush}" Padding="10" Margin="10,10,10,0" CornerRadius="4">
3737
<StackPanel>
3838
<TextBlock x:Name="CollectorNameText" FontSize="16" FontWeight="Bold"/>
3939
<TextBlock x:Name="SummaryText" Margin="0,5,0,0"/>
@@ -89,7 +89,7 @@
8989
</DataGrid>
9090

9191
<!-- Footer -->
92-
<Border Grid.Row="2" Background="{StaticResource BackgroundLightBrush}" Padding="10" Margin="10,0,10,10" CornerRadius="4">
92+
<Border Grid.Row="2" Background="{DynamicResource BackgroundLightBrush}" Padding="10" Margin="10,0,10,10" CornerRadius="4">
9393
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right">
9494
<Button Content="Close" Width="100" Height="30" Click="Close_Click"/>
9595
</StackPanel>

0 commit comments

Comments
 (0)