1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 09:57:59 +01:00

Skip setting elem.dactylKeyPress in passthrough-type modes. Closes issue #341.

This commit is contained in:
Kris Maglione
2011-02-03 14:17:21 -05:00
parent 145fedce44
commit a830bdd60d
2 changed files with 27 additions and 18 deletions

View File

@@ -123,18 +123,21 @@ var Modes = Module("modes", {
this.addMode("EMBED", {
input: true,
description: "Active when an <embed> or <object> element is focused",
ownsFocus: true
ownsFocus: true,
passthrough: true
});
this.addMode("PASS_THROUGH", {
description: "All keys but <C-v> are ignored by " + config.appName,
bases: [this.BASE],
hidden: true
hidden: true,
passthrough: true
});
this.addMode("QUOTE", {
hidden: true,
description: "The next key sequence is ignored by " + config.appName + ", unless in Pass Through mode",
bases: [this.BASE],
hidden: true,
passthrough: true,
display: function () modes.getStack(1).main == modes.PASS_THROUGH
? (modes.getStack(2).main.display() || modes.getStack(2).main.name) + " (next)"
: "PASS THROUGH (next)"
@@ -146,12 +149,14 @@ var Modes = Module("modes", {
});
this.addMode("IGNORE", { hidden: true }, {
onKeyPress: function (event) Events.KILL,
bases: []
bases: [],
passthrough: true
});
this.addMode("MENU", {
description: "Active when a menu or other pop-up is open",
input: true
input: true,
passthrough: true
});
this.addMode("LINE", {