Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Edit
diff options
context:
space:
mode:
Diffstat (limited to 'Edit')
-rw-r--r--Edit/MainWindow.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Edit/MainWindow.py b/Edit/MainWindow.py
index 1be07df..76c85ae 100644
--- a/Edit/MainWindow.py
+++ b/Edit/MainWindow.py
@@ -702,7 +702,7 @@ class MainWindow( SubActivity ):
self.csnd.loopSetNumTicks( numticks )
self.csnd.loopSetTick( self.page_onset[startPage] + startTick )
- self.csnd.loopSetTempo(self._data['tempo'])
+ self.csnd.setTempo(self._data['tempo'])
if (Config.DEBUG > 3): print "starting from tick", startTick, 'at tempo', self._data['tempo']
self.csnd.loopStart()
@@ -865,7 +865,7 @@ class MainWindow( SubActivity ):
img = min(7,int(8*(self._data["tempo"]-widget.lower)/(widget.upper-widget.lower)))+1# tempo 1-8
#self.GUI["2tempoImage"].set_from_file( Config.IMAGE_ROOT+"tempo"+str(img)+".png" )
if self.playing:
- self.csnd.loopSetTempo(self._data['tempo'])
+ self.csnd.setTempo(self._data['tempo'])
def handleToolClick( self, widget, mode ):
if widget.get_active(): self.trackInterface.setInterfaceMode( mode )
@@ -1415,7 +1415,7 @@ class MainWindow( SubActivity ):
def waitToSet(self):
self.csnd.setMasterVolume(self._data['volume'])
- self.csnd.loopSetTempo(self._data['tempo'])
+ self.csnd.setTempo(self._data['tempo'])
self.initTrackVolume()
def handleSave(self, widget):