Comment #3 on issue 254 by [email protected]: Cannot find MIDI http://code.google.com/p/solfege/issues/detail?id=254
Ubuntu 11.10 (Oneiric Ocelot) was released with a button devel version of Solfege. Below is a copy of an older mail I have written about this. Linux Mint 12 uses ubuntus version of Solfege, a buggy 3.19.6-1: https://launchpad.net/ubuntu/+source/solfege/3.19.6-1 It needs a one line patch shown below to work. Alternatly, you should try the newer version on launchpad: https://launchpad.net/ubuntu/+source/solfege/3.20.3-4 The current version (3.19.6-1) fails to start because set_size_request does not take float arguments. === modified file 'solfege/esel.py' --- solfege/esel.py 2011-05-13 07:51:52 +0000 +++ solfege/esel.py 2011-05-14 17:02:46 +0000 @@ -121,7 +121,7 @@ # ubuntu 10.04 and +4 on MS Windows XP. h = self.g_box.size_request()[1] + 4 if h > gtk.gdk.screen_height() * 0.8: - h = gtk.gdk.screen_height() *0.8 + h = int(gtk.gdk.screen_height() *0.8) self.set_size_request(w, h if h > self.m_min_height else self.m_min_height) # Then we check if we have to move the app window higher up on the # screen so that the whole window is visible. ** Affects: linuxmint Importance: Undecided Status: New ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ Solfege-devel mailing list To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe", or visit https://lists.sourceforge.net/lists/listinfo/solfege-devel
