summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/com/cyanogenmod/trebuchet/Workspace.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/cyanogenmod/trebuchet/Workspace.java b/src/com/cyanogenmod/trebuchet/Workspace.java
index 5597fb8dd..662a8b7db 100644
--- a/src/com/cyanogenmod/trebuchet/Workspace.java
+++ b/src/com/cyanogenmod/trebuchet/Workspace.java
@@ -1204,8 +1204,7 @@ public class Workspace extends PagedView
private void screenScrolledLargeUI(int screenScroll) {
if (isSwitchingState()) return;
boolean isInOverscroll = false;
- int currentScreen = (int) Math.floor((double) (screenScroll / (float) getMeasuredWidth()));
- for (int i = currentScreen; i <= Math.min(getChildCount(), currentScreen + 1); i++) {
+ for (int i = 0; i < getChildCount(); i++) {
CellLayout cl = (CellLayout) getChildAt(i);
if (cl != null) {
float scrollProgress = getScrollProgress(screenScroll, cl, i);