mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-01-19 05:45:15 +01:00
FIX: Select All was hijacked by Add Wallet
This commit is contained in:
parent
a9bd1f879f
commit
c9a7b5829f
@ -144,8 +144,10 @@
|
||||
[builder removeMenuForIdentifier:UIMenuToolbar];
|
||||
|
||||
// File -> Add Wallet (Command + A)
|
||||
UIKeyCommand *addWalletCommand = [UIKeyCommand keyCommandWithInput:@"A" modifierFlags:UIKeyModifierCommand action:@selector(addWalletAction:)];
|
||||
[addWalletCommand setTitle:@"Add Wallet"];
|
||||
UIKeyCommand *addWalletCommand = [UIKeyCommand keyCommandWithInput:@"A"
|
||||
modifierFlags:UIKeyModifierCommand | UIKeyModifierShift
|
||||
action:@selector(addWalletAction:)];
|
||||
[addWalletCommand setTitle:@"Add Wallet"];
|
||||
|
||||
// File -> Import Wallet
|
||||
UIKeyCommand *importWalletCommand = [UIKeyCommand keyCommandWithInput:@"I" modifierFlags:UIKeyModifierCommand action:@selector(importWalletAction:)];
|
||||
|
Loading…
Reference in New Issue
Block a user