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

Don't flush the autocomplete timer on first keypress. Causes a greater percieved typing lag as the key doesn't appear until after the completion list is populated.

--HG--
branch : key-processing
This commit is contained in:
Kris Maglione
2011-01-27 15:42:38 -05:00
parent 93e2584ab7
commit a8eed85aaf

View File

@@ -354,8 +354,6 @@ var CommandMode = Class("CommandMode", {
this.resetCompletions(); this.resetCompletions();
this.completions.autocompleteTimer.tell(false); this.completions.autocompleteTimer.tell(false);
if (!this.completions.itemList.visible)
this.completions.autocompleteTimer.flush();
} }
this.onChange(commandline.command); this.onChange(commandline.command);
}, },