1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-10 00:24:12 +01:00

Fix RangeFind corner case.

This commit is contained in:
Kris Maglione
2010-12-21 20:14:40 -05:00
parent 9511624649
commit 198a321c59
3 changed files with 7 additions and 4 deletions

View File

@@ -258,7 +258,7 @@ const CommandLine = Module("commandline", {
this._statusTimer = Timer(5, 100, function statusTell() {
if (self._completions == null || self._completions.selected == null)
statusline.progess = "";
statusline.progress = "";
else
statusline.progress = "match " + (self._completions.selected + 1) + " of " + self._completions.items.length;
});