diff --git a/kivy/uix/spinner.py b/kivy/uix/spinner.py index 1416b6b02..62a462aae 100644 --- a/kivy/uix/spinner.py +++ b/kivy/uix/spinner.py @@ -166,8 +166,9 @@ class Spinner(Button): container = dp.container if not container: return - for value in container.children: - item.height = self.height + h = self.height + for item in container.children[:]: + item.height = h def _update_dropdown(self, *largs): dp = self._dropdown