Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Edit/TrackInterface.py
diff options
context:
space:
mode:
authorOli <olivier.belanger@umontreal.ca>2007-07-06 20:21:26 (GMT)
committer Oli <olivier.belanger@umontreal.ca>2007-07-06 20:21:26 (GMT)
commit5cfbad2ce430b4c5ab120feff904ec4d0a2fbcb5 (patch)
tree32fbae5fc4c33adff7f35c01bf0db798b808a50c /Edit/TrackInterface.py
parent79f4a80f5fb50d5c7dc6cb88c3ad1c9bd1faac05 (diff)
instruments randomization
Diffstat (limited to 'Edit/TrackInterface.py')
-rw-r--r--Edit/TrackInterface.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Edit/TrackInterface.py b/Edit/TrackInterface.py
index 4f9fc64..f99cd44 100644
--- a/Edit/TrackInterface.py
+++ b/Edit/TrackInterface.py
@@ -467,7 +467,7 @@ class TrackInterface( gtk.EventBox ):
if onset >= n.cs.onset and onset < (n.cs.onset + n.cs.duration):
self.noteDB.deleteNote(self.curPage, i, n.id)
- cs = CSoundNote( onset,
+ cs = CSoundNote( int(onset),
pitch,
0.75,
0.5,
@@ -575,7 +575,7 @@ class TrackInterface( gtk.EventBox ):
if onset >= n.cs.onset and onset < (n.cs.onset + n.cs.duration):
self.noteDB.deleteNote(self.curPage, i, n.id)
- cs = CSoundNote( onset,
+ cs = CSoundNote( int(onset),
pitch,
0.75,
0.5,