We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://gist.github.com/rainbowdesign/8872759
Hope its not my fault in the code.
The text was updated successfully, but these errors were encountered:
It's because you are using a different thread. If you change:
Timer(1, timing).start()
to
from kivy.clock import Clock Clock.schedule_interval(lambda dt: timing(), 1)
it all seems to work? threading is a complicated thing: you want to avoid it wherever possible. The kivy.clock is your friend :-)
Sorry, something went wrong.
No branches or pull requests
https://gist.github.com/rainbowdesign/8872759
Hope its not my fault in the code.
The text was updated successfully, but these errors were encountered: