Increase TouchController.#dispatchMessage timeout time from 10ms to 100ms

This commit is contained in:
redphx 2023-08-12 14:55:54 +07:00
parent 43b932f5d6
commit 0cd6106957

View File

@ -167,7 +167,7 @@ class TouchController {
static #dispatchMessage(msg) {
TouchController.#dataChannel && setTimeout(() => {
TouchController.#dataChannel.dispatchEvent(msg);
}, 10);
}, 100);
}
static setup() {