Make enter key removable for label

This commit is contained in:
Vortrex
2023-02-18 14:36:20 -06:00
parent a374702da2
commit 889d7898c3

View File

@@ -283,7 +283,12 @@ function anchorBoat(vehicleId) {
// =========================================================================== // ===========================================================================
function setEnterPropertyKey(key) { function setEnterPropertyKey(key) {
enterPropertyKey = key; if (key == -1) {
enterPropertyKey = null;
} else {
enterPropertyKey = key;
}
} }
// =========================================================================== // ===========================================================================