Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoramartin <olpc@xo-05-28-21.localdomain>2007-09-12 04:22:49 (GMT)
committer amartin <olpc@xo-05-28-21.localdomain>2007-09-12 04:22:49 (GMT)
commitb94ccdfd2329ed2d1128a4392e2f67b1e6b704da (patch)
treebd46c48e1ee9f85c8558ee4d6873b4efe873fa82
parent83cd7a07c002052fdda8f8e36f3d7ae41f4652cd (diff)
no pause on record test
-rw-r--r--Jam/Popup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Jam/Popup.py b/Jam/Popup.py
index 3d21e7f..9af550c 100644
--- a/Jam/Popup.py
+++ b/Jam/Popup.py
@@ -791,7 +791,7 @@ class Loop( Popup ):
if self.recording:
return
- self.owner.setPaused( True )
+ #self.owner.setPaused( True )
self.owner.pushInstrument( self.instrument )
self.owner.setKeyboardListener( self )
@@ -804,7 +804,7 @@ class Loop( Popup ):
if not self.recording:
return
- self.owner.setPaused( False )
+ #self.owner.setPaused( False )
self.owner.popInstrument()
self.owner.setKeyboardListener( None )