Fix standalont touch_release event (#2813)

This commit is contained in:
Totoo 2025-10-10 22:47:17 +02:00 committed by GitHub
parent 193ac73b34
commit 6a81a981aa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -287,7 +287,7 @@ bool StandaloneView::on_touch(const TouchEvent event) {
if (get_application_information()->header_version > 1) {
get_application_information()->OnTouchEvent(event.point.x(), event.point.y(), (uint32_t)event.type);
}
return false;
return true;
}
bool StandaloneView::on_keyboard(const KeyboardEvent event) {