Merge pull request #62842 from RandomShaper/fix_iphone_input_3.5

[3.5] Flush accumulated input events on iOS
This commit is contained in:
Rémi Verschelde 2022-07-11 18:28:04 +02:00 committed by GitHub
commit 3f0201335e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -203,6 +203,8 @@ bool OSIPhone::iterate() {
return true;
}
input->flush_buffered_events();
return Main::iteration();
};