mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-28 23:22:28 +01:00
Only gripe about recursive mapping execution for macro keys.
This commit is contained in:
@@ -129,8 +129,11 @@ var Map = Class("Map", {
|
||||
mappings.repeat = repeat;
|
||||
|
||||
if (this.executing) {
|
||||
util.dumpStack(_("map.recursive", args.command));
|
||||
throw FailedAssertion(_("map.recursive", args.command));
|
||||
if (args.keypressEvents[0].isMacro) {
|
||||
util.dumpStack(_("map.recursive", args.command));
|
||||
throw FailedAssertion(_("map.recursive", args.command));
|
||||
}
|
||||
this.executing = false;
|
||||
}
|
||||
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user