projects
/
minwii.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Correction de typage.
[minwii.git]
/
src
/
minwii
/
widgets
/
playingscreen.py
diff --git
a/src/minwii/widgets/playingscreen.py
b/src/minwii/widgets/playingscreen.py
index
9519053
..
6d66ace
100755
(executable)
--- a/
src/minwii/widgets/playingscreen.py
+++ b/
src/minwii/widgets/playingscreen.py
@@
-323,6
+323,7
@@
class SongPlayingScreen(PlayingScreenBase) :
def setNoteTimeout(self) :
delay = self.currentNote.duration * self.quarterNoteDuration
delay = delay + delay * self.tempoTrim
+ delay = int(delay)
pygame.time.set_timer(events.NOTEEND, delay)
def tempoTrimUp(self, step=0.1) :