From 47edb6ed52265d5627e0ce5b35745806c751ca83 Mon Sep 17 00:00:00 2001 From: Michael Hoang Date: Wed, 4 May 2016 13:52:29 +1000 Subject: [PATCH] Offset the index by 1 so matches show from 1 to n --- common/content/commandline.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/commandline.js b/common/content/commandline.js index 3b3bce56..931a9b8a 100644 --- a/common/content/commandline.js +++ b/common/content/commandline.js @@ -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); },