We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 945832c commit 35aefcfCopy full SHA for 35aefcf
library/src/com/slidingmenu/lib/CustomViewAbove.java
@@ -618,8 +618,9 @@ public boolean onInterceptTouchEvent(MotionEvent ev) {
618
619
final int action = ev.getAction() & MotionEventCompat.ACTION_MASK;
620
621
- if (action == MotionEvent.ACTION_DOWN && DEBUG)
622
- Log.v(TAG, "Received ACTION_DOWN");
+ if (DEBUG)
+ if (action == MotionEvent.ACTION_DOWN)
623
+ Log.v(TAG, "Received ACTION_DOWN");
624
625
if (action == MotionEvent.ACTION_CANCEL || action == MotionEvent.ACTION_UP
626
|| (action != MotionEvent.ACTION_DOWN && mIsUnableToDrag)) {
0 commit comments