From c0dc363a3d12b48a298908b9377d4e02f52dc26f Mon Sep 17 00:00:00 2001 From: "Owen W. Taylor" Date: Wed, 27 Apr 2011 07:50:10 -0400 Subject: [PATCH] appDisplay: Fix off-by-one when incrementally adding application icons A "cosmetic" code arrangement I requested in code review resulted in one too few items being removed from the queue for each incremental chunk of icons added. Fix. https://bugzilla.gnome.org/show_bug.cgi?id=648739 --- js/ui/appDisplay.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 1dabc2cd5..050432134 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -126,7 +126,7 @@ AlphabeticalView.prototype = { if (currentTimeMillis - startTimeMillis > MAX_APPLICATION_WORK_MILLIS) break; } - this._pendingAppIds.splice(0, i); + this._pendingAppIds.splice(0, i + 1); if (this._pendingAppIds.length > 0) { return true; } else {