mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 11:17:58 +01:00
Offset the index by 1 so matches show from 1 to n
This commit is contained in:
@@ -1600,7 +1600,7 @@ var CommandLine = Module("commandline", {
|
|||||||
statusline.progress = "";
|
statusline.progress = "";
|
||||||
else
|
else
|
||||||
statusline.progress = _("completion.matchIndex",
|
statusline.progress = _("completion.matchIndex",
|
||||||
this.itemList.getOffset(idx),
|
this.itemList.getOffset(idx) + 1,
|
||||||
this.itemList.itemCount);
|
this.itemList.itemCount);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user