This commit is contained in:
2019-07-29 08:21:12 +02:00
parent c2ece38009
commit 5781441149

View File

@@ -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])