Tello-Python icon indicating copy to clipboard operation
Tello-Python copied to clipboard

Keyboard event bug removed

Open avirup171 opened this issue 4 years ago • 0 comments

A small bug was there in tello_control_ui.py where some keyboard press event was not working. Updated from def on_keypress_up(self, event): print "forward %d m" % self.distance self.telloMoveForward(self.distance) to def on_keypress_up(self, event): print "forward %d m" % self.distance self.telloMoveForward(self.distance_bar.get())

for all events.

avirup171 avatar Oct 10 '19 07:10 avirup171