mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-23 15:20:55 +01:00
Merge pull request #6284 from BlueWallet/shortut
FIX: Select All was hijacked by Add Wallet
This commit is contained in:
commit
b1aaea372c
1 changed files with 4 additions and 2 deletions
|
@ -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…
Add table
Reference in a new issue