Commit e5bf47e8 by Oliver Woodman

Fix issue delivering events to PlayerView OnClickListener

parent 4acdc8d0
...@@ -1035,6 +1035,12 @@ public class PlayerView extends FrameLayout { ...@@ -1035,6 +1035,12 @@ public class PlayerView extends FrameLayout {
if (ev.getActionMasked() != MotionEvent.ACTION_DOWN) { if (ev.getActionMasked() != MotionEvent.ACTION_DOWN) {
return false; return false;
} }
return performClick();
}
@Override
public boolean performClick() {
super.performClick();
return toggleControllerVisibility(); return toggleControllerVisibility();
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment