hotkey fixes

This commit is contained in:
Eugene Pankov
2021-09-17 00:23:12 +02:00
parent 60a1a1f21c
commit 95a04788e5

View File

@@ -229,6 +229,9 @@ export class HotkeysService {
if (!matches.length) { if (!matches.length) {
return null return null
} }
if (matches[0].sequence.length > 1) {
this.clearCurrentKeystrokes()
}
return matches[0].id return matches[0].id
} }