[gnome-shell/gnome-3-0] appDisplay: Fix off-by-one when incrementally adding application icons
- From: Colin Walters <walters src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/gnome-3-0] appDisplay: Fix off-by-one when incrementally adding application icons
- Date: Tue, 3 May 2011 12:53:17 +0000 (UTC)
commit 569008b08417d50b899266ba7c3eba4aee77c032
Author: Owen W. Taylor <otaylor fishsoup net>
Date: Wed Apr 27 07:50:10 2011 -0400
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 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index cd502ef..6fe12a4 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 {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]