From b051e4edc28bdd005d2199340bc22628a2af34bd Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Wed, 26 Jan 2011 13:42:52 -0500 Subject: [PATCH] Fix autocomplete. --HG-- branch : key-processing --- common/content/commandline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/commandline.js b/common/content/commandline.js index 195a4970..90ad8dd5 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -982,7 +982,7 @@ var CommandLine = Module("commandline", { this.itemList.setItems(this.context); 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.itemList.visible = true; }