diff options
author | Kris Maglione <maglione.k@gmail.com> | 2011-10-05 05:45:14 -0400 |
---|---|---|
committer | Kris Maglione <maglione.k@gmail.com> | 2011-10-05 05:45:14 -0400 |
commit | e498c0662a4b3cef2b478ef9edc8584d6bf911dd (patch) | |
tree | 699fa099925cfcd5d573090d50b7aea50a232baa /common/content | |
parent | c6ac63b5f9ca00b379e6c34ca6312f272dd9fbc0 (diff) | |
download | pentadactyl-e498c0662a4b3cef2b478ef9edc8584d6bf911dd.tar.gz |
Fix bug?
Diffstat (limited to 'common/content')
-rw-r--r-- | common/content/commandline.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/content/commandline.js b/common/content/commandline.js index 80bf8ace..9f6e4c9d 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -1139,7 +1139,6 @@ var CommandLine = Module("commandline", { if (!this.session.active) return; - this.context.updateAsync = true; this.reset(show, tabPressed); this.wildIndex = 0; this._caret = this.caret; @@ -1179,6 +1178,7 @@ var CommandLine = Module("commandline", { if (show) { this.itemList.update(); + this.context.updateAsync = true; if (this.haveType("list")) this.itemList.visible = true; this.selected = null; |