Convert enter property key to int

This commit is contained in:
Vortrex
2023-02-22 05:24:07 -06:00
parent e8d7b9312a
commit 549f8a3c59

View File

@@ -287,7 +287,7 @@ function setEnterPropertyKey(key) {
if (key == -1) {
enterPropertyKey = null;
} else {
enterPropertyKey = key;
enterPropertyKey = toInteger(key);
}
}