Changeset - 20d6884478bc
[Not reviewed]
default
0 2 0
drewp@bigasterisk.com - 13 years ago 2012-06-15 20:50:20
drewp@bigasterisk.com
fixes for machine swap
Ignore-this: 1a47409cd2ccefc2997955488366f414
2 files changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
bin/curvecalc
Show inline comments
 
@@ -61,13 +61,13 @@ class Main(object):
 
        if self.opts.reload:
 
            self.refreshTheme()
 
        mainwin.show_all()
 

	
 
        mainwin.connect("delete-event", lambda *args: reactor.crash())
 
        mainwin.set_title("curvecalc - %s" % graph.label(song))
 
        mainwin.parse_geometry("715x930-0+24")
 
        mainwin.parse_geometry("1x1-0+0")
 

	
 
        # this is the only one i found that would set the size right,
 
        # but it's a minimum size, which i don't really want
 
        mainwin.set_size_request(1678, 922)
 

	
 
        wtree.get_object("subterms").connect("add", self.onSubtermChildAdded)
light9/io/__init__.py
Show inline comments
 
@@ -62,13 +62,13 @@ class UsbDMX(BaseIO):
 
        self.dimmers = dimmers
 

	
 
    def _dmx(self):
 
        if self.out is None:
 
            sys.path.append("dmx_usb_module")
 
            from dmx import Dmx
 
            self.out = Dmx('/dev/dmx1')
 
            self.out = Dmx('/dev/dmx0')
 
        return self.out
 
        
 

	
 
    def sendlevels(self, levels):
 
        if self.dummy:
 
            return
0 comments (0 inline, 0 general)