| Issue 50: | Nosound doesn't currently work | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Fixed
|