Fix thermocamera

This commit is contained in:
Samuele E. Locatelli
2020-10-30 17:46:45 +01:00
parent b16dee60ba
commit b4de394af6
13 changed files with 241 additions and 21 deletions
+6 -2
View File
@@ -848,8 +848,12 @@ namespace Client2020
LastKeybPositionReopen = new Point() { X = KeybRct.Left, Y = KeybRct.Top };
}
for (int i = 0; i < processes.Length; i++)
processes[i].Kill();
try
{
for (int i = 0; i < processes.Length; i++)
processes[i].Kill();
}
catch (Exception ex) { }
KeyboardPID = 0;
KeyboardHandle = IntPtr.Zero;