From 1bf7d7f1c30a8fbb6a8b914491c6d042f1b7b92f Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Fri, 11 Feb 2011 00:45:00 -0500 Subject: [PATCH] Deal with autocomplete fallout from imported patch. --- common/content/commandline.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/content/commandline.js b/common/content/commandline.js index e71a1c45..595f8da4 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -326,8 +326,8 @@ var CommandMode = Class("CommandMode", { if (this.complete) this.completions = CommandLine.Completions(commandline.widgets.active.command.inputField, this); - if (this.completions && command && options["autocomplete"].length && commandline.commandSession === this) - this.completions.complete(true, false); + if (this.completions && command && commandline.commandSession === this) + this.completions.autocompleteTimer.flush(true); }, get holdFocus() this.widgets.active.command.inputField,