[gnome-shell/wip/paging-release: 60/74] Fixed bad calculation of empty rows, causing moving the current row with the fodler icon when it can
- From: Carlos Soriano <csoriano src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell/wip/paging-release: 60/74] Fixed bad calculation of empty rows, causing moving the current row with the fodler icon when it can
- Date: Mon, 12 Aug 2013 21:15:16 +0000 (UTC)
commit d05381b4f365a4bf68af66e2aab5b0e61a21ee04
Author: Carlos Soriano <carlos soriano89 gmail com>
Date: Wed Jul 24 18:47:45 2013 +0200
Fixed bad calculation of empty rows, causing moving the current row with
the fodler icon when it can stay inn the position
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 a60e455..8a3ece0 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -239,7 +239,7 @@ const AppPages = new Lang.Class({
}
}
//The last page can have space without rows
- let emptyRows = folderNVisibleRowsAtOnce + 1 - rows.length ;
+ let emptyRows = this._grid._rowsPerPage - rows.length ;
let panViewUpNRows = 0;
let panViewDownNRows = 0;
if(side == St.Side.BOTTOM) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]