1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-21 07:11:26 +02:00

Merge pull request #159 from airodactyl/fix-match-idx

Offset the index by 1 so matches show from 1 to n
This commit is contained in:
dkearns
2016-08-10 05:39:53 +10:00
committed by GitHub
+1 -1
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);
},