mirror of https://github.com/kivy/kivy.git
py3 fix for animation, thanks to blarghmatey for reporting
This commit is contained in:
parent
64dc73fe1d
commit
13df239f1a
|
@ -270,7 +270,7 @@ class Animation(EventDispatcher):
|
||||||
widgets = self._widgets
|
widgets = self._widgets
|
||||||
transition = self._transition
|
transition = self._transition
|
||||||
calculate = self._calculate
|
calculate = self._calculate
|
||||||
for uid in widgets.keys()[:]:
|
for uid in list(widgets.keys())[:]:
|
||||||
anim = widgets[uid]
|
anim = widgets[uid]
|
||||||
widget = anim['widget']
|
widget = anim['widget']
|
||||||
if anim['time'] is None:
|
if anim['time'] is None:
|
||||||
|
|
Loading…
Reference in New Issue