OSDN Git Service

Allow touch event goes down to view in filmstrip
authorAngus Kong <shkong@google.com>
Fri, 7 Mar 2014 01:03:31 +0000 (17:03 -0800)
committerAngus Kong <shkong@google.com>
Fri, 7 Mar 2014 01:03:31 +0000 (17:03 -0800)
bug:13027352
Change-Id: Iee5783a3698bea2fc5cd695d3b671c0206d2fbf2

src/com/android/camera/widget/FilmstripView.java

index 97a175f..c794854 100644 (file)
@@ -1435,7 +1435,7 @@ public class FilmstripView extends ViewGroup {
 
     @Override
     public boolean onInterceptTouchEvent(MotionEvent ev) {
-        if (!inFullScreen() || mController.isScrolling()) {
+        if (mController.isScrolling()) {
             return true;
         }