Skip to content

Commit 5333330

Browse files
authored
Fix issue where root background brush wouldn't show (#6005)
1 parent d1642c2 commit 5333330

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Files/Views/MainPage.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
xmlns:usercontrols="using:Files.UserControls.MultitaskingControl"
1616
xmlns:viewmodels="using:Files.ViewModels"
1717
muxc:BackdropMaterial.ApplyToRootOrPageBackground="False"
18-
Background="{ThemeResource RootBackgroundBrush}"
18+
Background="Transparent"
1919
KeyboardAcceleratorPlacementMode="Hidden"
2020
Loaded="Page_Loaded"
2121
NavigationCacheMode="Required"
@@ -200,7 +200,7 @@
200200
</KeyboardAccelerator>
201201
</Page.KeyboardAccelerators>
202202

203-
<Border>
203+
<Border Background="{ThemeResource RootBackgroundBrush}">
204204
<controls:SidebarControl
205205
x:Name="SidebarControl"
206206
Grid.Column="0"

0 commit comments

Comments
 (0)