Fixed issue when locking and unlocking the same wallet
This commit is contained in:
@@ -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
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user