Skip to content

Commit

Permalink
Merge pull request #4982 from sqrrm/copy-account-shortcut
Browse files Browse the repository at this point in the history
Avoid standard shortcuts
  • Loading branch information
sqrrm authored Dec 20, 2020
2 parents 442d65a + 48c912c commit 402c8ef
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void initialize() {
accountAgeWitnessService.getAccountAgeWitnessUtils().logSigners();
} else if (Utilities.isCtrlShiftPressed(KeyCode.U, event)) {
accountAgeWitnessService.getAccountAgeWitnessUtils().logUnsignedSignerPubKeys();
} else if (Utilities.isAltOrCtrlPressed(KeyCode.C, event)) {
} else if (Utilities.isCtrlShiftPressed(KeyCode.C, event)) {
copyAccount();
}
};
Expand Down

0 comments on commit 402c8ef

Please sign in to comment.