From 243923836ef2338833b0f016f7412110c19d4c62 Mon Sep 17 00:00:00 2001 From: MaHuJa Date: Wed, 18 Dec 2013 21:34:51 +0100 Subject: [PATCH] .23 hotfix --- TermWindow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"); } }