diff --git a/TermWindow.cs b/TermWindow.cs index f32c6b6..26f4eb6 100644 --- a/TermWindow.cs +++ b/TermWindow.cs @@ -88,7 +88,7 @@ private void Lock() // Prevent editor keys from being pressed while typing EditorLogic editor = EditorLogic.fetch; - if (editor != null && !EditorLogic.softLock) editor.Lock(true, true, true); + if (editor != null && !EditorLogic.softLock) editor.Lock(true, true, true, "kOSTerminal"); } } @@ -103,7 +103,7 @@ private void Unlock() cameraManager.enabled = true; EditorLogic editor = EditorLogic.fetch; - if (editor != null) editor.Unlock(); + if (editor != null) editor.Unlock("kOSTerminal"); } }