From 5781441149ee7c77599b1411174845282e947c4e Mon Sep 17 00:00:00 2001 From: Alexandre Gobbo Date: Mon, 29 Jul 2019 08:21:12 +0200 Subject: [PATCH] Startup --- script/tweaK.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/tweaK.py b/script/tweaK.py index 0f4b887..4bfe1e6 100644 --- a/script/tweaK.py +++ b/script/tweaK.py @@ -4,7 +4,7 @@ def tweak(positioner, step): positioner=to_list(string_to_obj(positioner)) step = to_list(step) while (True): - key=Shell.waitKey(0) + key=get_context().waitKey(0) if key == 0x25 : #Left for i in range(len(positioner)): positioner[i].moveRel(-step[i])