1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-24 10:27:10 +02:00

Desktop: fix menu bar shortcut (Alt+E) while editing a note (Win) (#2776)

This commit is contained in:
nullpointer666 2020-03-17 22:49:36 +06:00 committed by GitHub
parent 8cd26c9380
commit cdb8a1e98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -968,6 +968,7 @@ class NoteTextComponent extends React.Component {
cancelledKeys.push(`Ctrl+${l}`);
cancelledKeys.push(`Command+${l}`);
}
cancelledKeys.push('Alt+E');
for (let i = 0; i < cancelledKeys.length; i++) {
const k = cancelledKeys[i];