1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 23:17:59 +01:00

Fix autocomplete.

--HG--
branch : key-processing
This commit is contained in:
Kris Maglione
2011-01-26 13:42:52 -05:00
parent c952a83c54
commit b051e4edc2

View File

@@ -982,7 +982,7 @@ var CommandLine = Module("commandline", {
this.itemList.setItems(this.context); this.itemList.setItems(this.context);
this.autocompleteTimer = Timer(200, 500, function autocompleteTell(tabPressed) { this.autocompleteTimer = Timer(200, 500, function autocompleteTell(tabPressed) {
if (!events.feedingKeys && this.completions && options["autocomplete"].length) { if (!events.feedingKeys && options["autocomplete"].length) {
this.complete(true, false); this.complete(true, false);
this.itemList.visible = true; this.itemList.visible = true;
} }