Issue 50: Nosound doesn't currently work
Status:  Fixed
Owner: ----
Closed:  Feb 2010
Reported by filipe.c...@gmail.com, Feb 15, 2010
If I try to run marave in a system without pulse it doesn't currently work.
It seems to be a mix up of names.
The following patches fixes it for me so that I can run in on my system
(macosx)

[filipe@fmac marave]\$ svn diff
Index: main.py
===================================================================
--- main.py     (revision 265)
+++ main.py     (working copy)
@@ -1318,7 +1318,7 @@
     window.editor.setFocus()
     app.processEvents()
     if not SOUND:
-        QtCore.QTimer.singleShot(2000,self.warnnosound)
+        QtCore.QTimer.singleShot(2000,window.warnnosound)
     QtCore.QTimer.singleShot(0,window.init)
     if args:
         load=lambda: window.editor.open(args[0])
Feb 15, 2010
Project Member #1 roberto.alsina
Indeed a confusion when I was moving that code around.

Thanks! 

Applied the patch in r266
Status: Fixed