diff --git a/common/content/tabs.js b/common/content/tabs.js index 76658eb0..31d24e26 100644 --- a/common/content/tabs.js +++ b/common/content/tabs.js @@ -968,7 +968,7 @@ const Tabs = Module("tabs", { if (dactyl.has("tabs_undo")) { mappings.add([modes.NORMAL], ["u"], "Undo closing of a tab", - function (count) { dactyl.execute(count + "undo"); }, + function (count) { commands.get("undo").action({ count: count }); }, { count: true }); }