* Fix mobile crash

* Reduce tap timeout

* Fix selection

* Try to fix safari empty frame

* Fix config editor
This commit is contained in:
Nicolas Mowen
2024-01-03 17:40:02 -06:00
committed by Blake Blackshear
parent d2ab44ce72
commit 6dd9d54f70
3 changed files with 9 additions and 7 deletions

View File

@@ -186,8 +186,8 @@ function PreviewContent({
const touchEnd = new Date().getTime();
// consider tap less than 300 ms
if (touchEnd - touchStart < 300) {
// consider tap less than 100 ms
if (touchEnd - touchStart < 100) {
onClick();
}
});