Fixed issue when locking and unlocking the same wallet

This commit is contained in:
TheXamlGuy
2024-07-12 20:13:26 +01:00
parent 4846532d93
commit f17ffcbaf6
4 changed files with 82 additions and 37 deletions
+5 -4
View File
@@ -29,10 +29,11 @@ public partial class MainViewModel :
{
if (args.Sender is WalletNavigationViewModel wallet)
{
SelectedItem = null;
Reset(args => args.SetSource(wallet), false);
SelectedItem = wallet;
Reset(args =>
{
args.SetSource(wallet, () => wallet);
SelectedItem = wallet;
}, false);
}
else
{