Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Files.App/Views/Settings/AppearancePage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,7 @@
<GridView
Padding="8"
HorizontalAlignment="Stretch"
Background="{ThemeResource CardBackgroundFillColorDefaultBrush}"
ItemTemplate="{StaticResource AppThemeResourcesItemTemplate}"
ItemsSource="{x:Bind ViewModel.AppThemeResources, Mode=OneWay}"
SelectedItem="{x:Bind ViewModel.SelectedAppThemeResources, Mode=TwoWay}" />
Expand Down
2 changes: 1 addition & 1 deletion src/Files.App/Views/Settings/DevToolsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
ItemsSource="{x:Bind ViewModel.OpenInIDEOptions.Values}"
SelectedItem="{x:Bind ViewModel.SelectedOpenInIDEOption, Mode=TwoWay}" />
<wctcontrols:SettingsExpander.ItemsHeader>
<StackPanel Orientation="Vertical">
<StackPanel Background="{ThemeResource CardBackgroundFillColorDefaultBrush}" Orientation="Vertical">
<Grid
x:Name="IDEConfigGrid"
Padding="32,12"
Expand Down
1 change: 1 addition & 0 deletions src/Files.App/Views/Settings/GeneralPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@
<Grid
Padding="8"
HorizontalAlignment="Stretch"
Background="{ThemeResource CardBackgroundFillColorDefaultBrush}"
RowSpacing="4"
Visibility="{x:Bind ViewModel.OpenASpecificPageOnStartup, Mode=OneWay}">
<Grid.RowDefinitions>
Expand Down
2 changes: 1 addition & 1 deletion src/Files.App/Views/Settings/TagsPage.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@

<Button Command="{x:Bind ViewModel.AddTagCommand, Mode=OneWay}" Content="{helpers:ResourceString Name=NewTag}" />
<wctcontrols:SettingsExpander.ItemsHeader>
<StackPanel>
<StackPanel Background="{ThemeResource CardBackgroundFillColorDefaultBrush}">
<!-- Create new tag -->
<Grid
x:Name="AddTagGrid"
Expand Down
Loading