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

Offset the index by 1 so matches show from 1 to n

This commit is contained in:
Michael Hoang
2016-05-04 13:52:29 +10:00
parent 1a4290d92a
commit 47edb6ed52

View File

@@ -1600,7 +1600,7 @@ var CommandLine = Module("commandline", {
statusline.progress = "";
else
statusline.progress = _("completion.matchIndex",
this.itemList.getOffset(idx),
this.itemList.getOffset(idx) + 1,
this.itemList.itemCount);
},