From 3c414d9ac9b39c19f6273e9ed78195ae14f37a82 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Thu, 30 Dec 2010 20:21:07 +1100 Subject: [PATCH] Fix q mapping's action arg. See revision 45b2508a55c9. --- common/content/events.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/events.js b/common/content/events.js index fe689949..c4eebe49 100644 --- a/common/content/events.js +++ b/common/content/events.js @@ -1248,7 +1248,7 @@ var Events = Module("events", { // macros mappings.add([modes.NORMAL, modes.TEXT_AREA, modes.PLAYER].filter(util.identity), ["q"], "Record a key sequence into a macro", - function (arg) { + function ({ arg }) { events._macroKeys.pop(); events[modes.recording ? "finishRecording" : "startRecording"](arg); },