onTouchEvent: pass return value to GTK

This allows to propagate unhandled events to the next handler
This commit is contained in:
Julian Winkler
2023-10-28 16:52:58 +02:00
parent 469d47091c
commit 3e7f07ec71
2 changed files with 10 additions and 8 deletions

View File

@@ -875,7 +875,7 @@ public class View extends Object {
}
public boolean onTouchEvent(MotionEvent event) {
return true;
return false;
}
public native void setOnTouchListener(OnTouchListener l);