mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-28 08:56:24 +02:00
UI: Rename App to RyujinxApp
Add more NotificationHelper methods Simplify ID copy logic
This commit is contained in:
parent
4d7350fc6e
commit
16a60fdf12
13 changed files with 82 additions and 40 deletions
|
@ -51,7 +51,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
|||
|
||||
public AboutWindowViewModel()
|
||||
{
|
||||
Version = App.FullAppName + "\n" + Program.Version;
|
||||
Version = RyujinxApp.FullAppName + "\n" + Program.Version;
|
||||
UpdateLogoTheme(ConfigurationState.Instance.UI.BaseStyle.Value);
|
||||
|
||||
ThemeManager.ThemeChanged += ThemeManager_ThemeChanged;
|
||||
|
@ -64,7 +64,7 @@ namespace Ryujinx.Ava.UI.ViewModels
|
|||
|
||||
private void UpdateLogoTheme(string theme)
|
||||
{
|
||||
bool isDarkTheme = theme == "Dark" || (theme == "Auto" && App.DetectSystemTheme() == ThemeVariant.Dark);
|
||||
bool isDarkTheme = theme == "Dark" || (theme == "Auto" && RyujinxApp.DetectSystemTheme() == ThemeVariant.Dark);
|
||||
|
||||
string basePath = "resm:Ryujinx.UI.Common.Resources.";
|
||||
string themeSuffix = isDarkTheme ? "Dark.png" : "Light.png";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue