From 88e02c04bd4812158e78a856100fcde2aa2d7f01 Mon Sep 17 00:00:00 2001 From: Evan Langlais Date: Mon, 27 Mar 2017 18:33:11 -0400 Subject: [PATCH] Reverted OSK Changes --- EnigmaX/Classes/SystemFunctions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EnigmaX/Classes/SystemFunctions.cs b/EnigmaX/Classes/SystemFunctions.cs index d623d00..0dec99d 100644 --- a/EnigmaX/Classes/SystemFunctions.cs +++ b/EnigmaX/Classes/SystemFunctions.cs @@ -28,7 +28,7 @@ public static Employee showPinScreenUntilAuthenticated(EmployeeRole role) public static void showOSK() { string progFiles = @"C:\Program Files\Common Files\Microsoft Shared\ink"; string keyboardPath = Path.Combine(progFiles, "TabTip.exe"); - Process keyboardProc = Process.Start(keyboardPath); + Process.Start(keyboardPath); }