1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-28 08:52:26 +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

@@ -1753,7 +1753,8 @@ var Buffer = Module("buffer", {
mappings.add([modes.NORMAL], ["<Space>"],
"Scroll down a full page",
function (args) {
if (isinstance(content.document.activeElement, [HTMLInputElement, HTMLButtonElement]))
if (isinstance(services.focus.activeWindow.document.activeElement,
[HTMLInputElement, HTMLButtonElement, Ci.nsIDOMXULButtonElement]))
return Events.PASS;
buffer.scrollVertical("pages", Math.max(args.count, 1));
},