Decrease LittlevGL tick rate - it was causing typing issues

This commit is contained in:
Themba Dube 2019-06-04 13:18:51 -04:00
parent 255afd6eec
commit b09fd2ec34
3 changed files with 17 additions and 17 deletions

@ -1 +1 @@
Subproject commit 6574e29602a9d6016f018a92bcc188616f524ae4
Subproject commit 50f2e38050f821ca2e8de62f737e7c63a1435fc5

View File

@ -152,7 +152,7 @@
var the_mp_handle_pending = Module.cwrap('mp_handle_pending', null);
function handle_pending() {
the_mp_handle_pending();
setTimeout(handle_pending, 20); // should call lv_task_handler()
setTimeout(handle_pending, 50); // should call lv_task_handler()
}
/*Initialize the REPL.*/
mp_js_init_repl();

File diff suppressed because one or more lines are too long