Skip to content

Commit

Permalink
fix error in line 658
Browse files Browse the repository at this point in the history
  • Loading branch information
slytomcat committed Apr 28, 2019
1 parent 46a962f commit 19005f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion yandex-disk-indicator.py
Original file line number Diff line number Diff line change
Expand Up @@ -655,7 +655,7 @@ def __init__(self, path, ID):
# Create staff for icon animation support (don't start it here)
def iconAnimation(): # Changes busy icon by loop (triggered by self.timer)
# Set next animation icon
self.ind.set_icon_full(pathJoin(self.themePath, 'yd-busy' + str(self._seqNum) + '.png', ''))
self.ind.set_icon_full(pathJoin(self.themePath, 'yd-busy' + str(self._seqNum) + '.png'), '')
# Calculate next icon number
self._seqNum = self._seqNum % 5 + 1 # 5 icon numbers in loop (1-2-3-4-5-1-2-3...)
return True # True required to continue triggering by timer
Expand Down

0 comments on commit 19005f2

Please sign in to comment.