diff options
Diffstat (limited to 'platform')
-rw-r--r-- | platform/android/src/com/artifex/mupdfdemo/ReaderView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/src/com/artifex/mupdfdemo/ReaderView.java b/platform/android/src/com/artifex/mupdfdemo/ReaderView.java index e27f0bbf..07eb6824 100644 --- a/platform/android/src/com/artifex/mupdfdemo/ReaderView.java +++ b/platform/android/src/com/artifex/mupdfdemo/ReaderView.java @@ -408,7 +408,7 @@ public class ReaderView } break; case MOVING_DOWN: - if (HORIZONTAL_SCROLLING && bounds.bottom <= 0) { + if (!HORIZONTAL_SCROLLING && bounds.bottom <= 0) { // Fling off to the bottom bring previous view onto screen View vr = mChildViews.get(mCurrent-1); |