From 6e909fb544c8dc8b6b395af02f524c18e71d7fbb Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sat, 12 Mar 2011 17:04:36 -0500 Subject: [PATCH] Fix minor event replay issue. --- common/content/events.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/common/content/events.js b/common/content/events.js index f2f44374..c70d9df0 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -92,7 +92,8 @@ var ProcessorStack = Class("ProcessorStack", { this.timer = services.Timer(this, options["timeoutlen"], services.Timer.TYPE_ONE_SHOT); } else if (result !== Events.KILL && !this.actions.length && - !(this.passUnknown || this.modes.some(function (m) m.passEvent(this), this.events[0]))) { + !(this.events[0].isReplay || this.passUnknown + || this.modes.some(function (m) m.passEvent(this), this.events[0]))) { result = Events.ABORT; if (!Events.isEscape(this.events.slice(-1)[0])) dactyl.beep();