From a9670637d1c084022ae6d2955ce7ef3f57c12a39 Mon Sep 17 00:00:00 2001 From: 20kdc Date: Tue, 17 Apr 2018 18:08:03 +0100 Subject: [PATCH] Make Delete also able to kill tasks in app-taskmgr --- code/apps/app-taskmgr.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/apps/app-taskmgr.lua b/code/apps/app-taskmgr.lua index a6daa93..dd9b823 100644 --- a/code/apps/app-taskmgr.lua +++ b/code/apps/app-taskmgr.lua @@ -78,7 +78,7 @@ while true do end if n[3] == "key" then if n[6] then - if n[4] == 8 then + if n[4] == 8 or n[4] == 127 then if consistentProcList[camY] then kill(consistentProcList[camY][1]) end