[gnome-shell/wip/paging-release: 24/38] 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: 24/38] Fixed bad calculation of empty rows, causing moving the current row with the fodler icon when it can
- Date: Tue, 13 Aug 2013 20:16:43 +0000 (UTC)
commit 28275ae2a9076562d6872cb8d27619b941dcda45
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 5d3b9c4..0e363cb 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]