mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-03 20:54:10 +01:00
Fix mode name generated for longer names in mapping serialization. Closes issue #565.
--HG-- extra : rebase_source : 115073fae6cf2a15692cac72df976e1eacf5298e
This commit is contained in:
@@ -1315,7 +1315,10 @@ var Events = Module("events", {
|
||||
},
|
||||
|
||||
keyup: function onKeyUp(event) {
|
||||
this.keyEvents.push(event);
|
||||
if (this.type == "keydown")
|
||||
this.keyEvents.push(event);
|
||||
else
|
||||
this.keyEvents = [];
|
||||
|
||||
let isMacro = event.isMacro || this.feedingEvent && this.feedingEvent.isMacro;
|
||||
if (this.lastKeyFake && !isMacro)
|
||||
|
||||
Reference in New Issue
Block a user