Skip to content

Commit

Permalink
Update Nugets
Browse files Browse the repository at this point in the history
  • Loading branch information
Panda-Sharp committed Sep 13, 2021
1 parent ccb794d commit 994c226
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Yugen.Mosaic.Uwp/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected override async void OnLaunched(LaunchActivatedEventArgs e)

// Initial UI styling
TitleBarHelper.ExpandViewIntoTitleBar();
//TitleBarHelper.StyleTitleBar(...);
TitleBarHelper.StyleTitleBar();

// Create a Frame to act as the navigation context and navigate to the first page
rootFrame = new Frame();
Expand Down Expand Up @@ -152,7 +152,7 @@ private IServiceProvider ConfigureServices()

private async Task InitializeServices()
{
await Services.GetService<IThemeSelectorService>().InitializeAsync(true);
await Services.GetService<IThemeSelectorService>().InitializeAsync();
}
}
}
2 changes: 1 addition & 1 deletion Yugen.Mosaic.Uwp/ViewModels/SettingsViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public ElementTheme ElementTheme
private async Task SwitchThemeCommandBehavior(ElementTheme param)
{
ElementTheme = param;
await _themeSelectorService.SetThemeAsync(param, true);
await _themeSelectorService.SetThemeAsync(param);
}
}
}
6 changes: 3 additions & 3 deletions Yugen.Mosaic.Uwp/Yugen.Mosaic.Uwp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -234,13 +234,13 @@
<Version>1.6.8</Version>
</PackageReference>
<PackageReference Include="Yugen.Toolkit.Standard">
<Version>1.0.46</Version>
<Version>1.0.47</Version>
</PackageReference>
<PackageReference Include="Yugen.Toolkit.Uwp">
<Version>1.0.46</Version>
<Version>1.0.47</Version>
</PackageReference>
<PackageReference Include="Yugen.Toolkit.Uwp.Controls">
<Version>1.0.46</Version>
<Version>1.0.47</Version>
</PackageReference>
<PackageReference Include="Serilog.Extensions.Logging">
<Version>3.0.1</Version>
Expand Down

0 comments on commit 994c226

Please sign in to comment.