1
0
mirror of https://github.com/emilk/egui.git synced 2026-06-26 22:53:14 -04:00

Fix touch screen interactions

This commit is contained in:
Emil Ernerfeldt
2020-04-23 21:27:05 +02:00
parent b39555bb23
commit 0b8351b9af

View File

@@ -193,9 +193,9 @@
canvas.addEventListener("touchend", function (event) {
g_is_touch = true;
g_mouse_down = false; // First release mouse to click...
update_gui()();
paint();
g_mouse_pos = null; // ...remove hover effect
update_gui()();
invalidate();
event.stopPropagation();
event.preventDefault();
});