Skip to content
This repository was archived by the owner on Jun 5, 2023. It is now read-only.

Commit 87042ee

Browse files
authored
Wrong variable naming in example (#30)
Updated variable in example file so the code works without errors.
1 parent 942fe2f commit 87042ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GestureLibrarySample/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class MainActivity extends Activity implements OnGestureListener {
3939

4040
@Override
4141
public boolean dispatchTouchEvent(MotionEvent ev) {
42-
return glassGestureDetector.onTouchEvent(event) || super.dispatchTouchEvent(event);
42+
return glassGestureDetector.onTouchEvent(ev) || super.dispatchTouchEvent(ev);
4343
}
4444

4545
@Override

0 commit comments

Comments
 (0)