1
0
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:
Kris Maglione
2011-10-03 23:55:21 -04:00
parent 6ed8983b11
commit 64df9d9740

View File

@@ -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 {