From: pin Date: Mon, 27 Jun 2011 19:57:48 +0000 (+0000) Subject: Correction de typage. X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/commitdiff_plain/6b5c606eb0608be4aaaa1622bd0323b1516db32b Correction de typage. git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@360 fe552daf-6dbe-4428-90eb-1537e0879342 --- diff --git a/src/minwii/widgets/playingscreen.py b/src/minwii/widgets/playingscreen.py index 9519053..6d66ace 100755 --- 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) :