mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-06 20:10:08 +01:00
Merge pull request #946 from RobinD42/throbber-issue924
Ensure the sequence attribute is a list by default
(cherry picked from commit c706dfacd9)
This commit is contained in:
@@ -333,7 +333,7 @@ class Throbber(wx.Panel):
|
||||
#FIXME: need to make sure values are within range!!!
|
||||
self.sequence = sequence
|
||||
else:
|
||||
self.sequence = range(self.frames)
|
||||
self.sequence = list(range(self.frames))
|
||||
|
||||
if running:
|
||||
self.Start()
|
||||
|
||||
Reference in New Issue
Block a user