diff options
author | Ac_K <Acoustik666@gmail.com> | 2022-07-28 19:16:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-28 14:16:23 -0300 |
commit | 8cfec5de4bde7087734beb2f7203f0d930e1b2d8 (patch) | |
tree | 1305b1e5a345f8e7d9a0f6d464948aa064749c30 /Ryujinx.Ava/Ui/ViewModels/UserProfileViewModel.cs | |
parent | 37b6e081da6acb6d0ecbe34385d4e09b1ffca5b7 (diff) |
Avalonia: Cleanup UserEditor a bit (#3492)1.1.196
This PR cleanup the UserEditor code a bit, 2 texts are added for "Name" and "User Id", because when you create a new profile, the textbox is empty without any hints. `axaml` files are autoformated too.
Diffstat (limited to 'Ryujinx.Ava/Ui/ViewModels/UserProfileViewModel.cs')
-rw-r--r-- | Ryujinx.Ava/Ui/ViewModels/UserProfileViewModel.cs | 14 |
1 files changed, 5 insertions, 9 deletions
diff --git a/Ryujinx.Ava/Ui/ViewModels/UserProfileViewModel.cs b/Ryujinx.Ava/Ui/ViewModels/UserProfileViewModel.cs index f7a50077..a48b06e6 100644 --- a/Ryujinx.Ava/Ui/ViewModels/UserProfileViewModel.cs +++ b/Ryujinx.Ava/Ui/ViewModels/UserProfileViewModel.cs @@ -43,11 +43,9 @@ namespace Ryujinx.Ava.Ui.ViewModels } } - public bool IsHighlightedProfileEditable => - _highlightedProfile != null; + public bool IsHighlightedProfileEditable => _highlightedProfile != null; - public bool IsHighlightedProfileDeletable => - _highlightedProfile != null && _highlightedProfile.UserId != AccountManager.DefaultUserId; + public bool IsHighlightedProfileDeletable => _highlightedProfile != null && _highlightedProfile.UserId != AccountManager.DefaultUserId; public UserProfile HighlightedProfile { @@ -62,16 +60,13 @@ namespace Ryujinx.Ava.Ui.ViewModels } } - public void Dispose() - { - } + public void Dispose() { } public void LoadProfiles() { Profiles.Clear(); - var profiles = _owner.AccountManager.GetAllUsers() - .OrderByDescending(x => x.AccountState == AccountState.Open); + var profiles = _owner.AccountManager.GetAllUsers().OrderByDescending(x => x.AccountState == AccountState.Open); foreach (var profile in profiles) { @@ -94,6 +89,7 @@ namespace Ryujinx.Ava.Ui.ViewModels public void AddUser() { UserProfile userProfile = null; + _owner.Navigate(typeof(UserEditor), (this._owner, userProfile, true)); } |