1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-08 17:24:12 +01:00

Fix pass through of <Space> to alert boxen.

This commit is contained in:
Kris Maglione
2011-08-06 08:07:31 -04:00
parent 99f3840b72
commit 4958d6854f
2 changed files with 3 additions and 2 deletions

View File

@@ -345,7 +345,7 @@ var Config = Module("config", ConfigBase, {
mappings: function initMappings(dactyl, modules, window) {
const { Events, mappings, modes } = modules;
mappings.add([modes.NORMAL],
["<Return>", "<Space>", "<Up>", "<Down>"],
["<Return>", "<Up>", "<Down>"],
"Handled by " + config.host,
function () Events.PASS_THROUGH);
},