thegooglecodearchive / marave

Automatically exported from code.google.com/p/marave
GNU General Public License v2.0
0 stars 0 forks source link

Nosound doesn't currently work #50

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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])

Original issue reported on code.google.com by filipe.c...@gmail.com on 15 Feb 2010 at 2:04

GoogleCodeExporter commented 9 years ago
Indeed a confusion when I was moving that code around.

Thanks! 

Applied the patch in r266

Original comment by roberto.alsina on 15 Feb 2010 at 2:08