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

Allow binding keys in "menu" modes.

This commit is contained in:
Kris Maglione
2010-12-25 19:45:05 -05:00
parent dca9f2df86
commit 1c9d1b2548
3 changed files with 12 additions and 7 deletions

View File

@@ -1168,9 +1168,9 @@ var CommandLine = Module("commandline", {
availableHeight -= extra || 0;
doc.body.style.minWidth = this.widgets.commandbar.commandline.scrollWidth + "px";
this.widgets.mowContainer.height = Math.min(doc.height, availableHeight) + "px";
this.widgets.mowContainer.height = Math.min(doc.body.clientHeight, availableHeight) + "px";
this.timeout(function ()
this.widgets.mowContainer.height = Math.min(doc.height, availableHeight) + "px",
this.widgets.mowContainer.height = Math.min(doc.body.clientHeight, availableHeight) + "px",
0);
doc.body.style.minWidth = "";