Show
Ignore:
Timestamp:
11/22/11 01:37:38 (12 years ago)
Author:
jwoithe
Message:

matrixmixer widget: label channels starting at channel 1 rather than 0, since this almost certainly corresponds better with channel labels used on almost all interfaces. If there's a problem let me know.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/support/mixer-qt4/ffado/widgets/matrixmixer.py

    r2006 r2007  
    194194            self.lbl.setText("%i" % self.number); 
    195195        else: 
    196             self.lbl.setText("Ch. %i%s" % (self.number, self.name)) 
     196            self.lbl.setText("Ch. %i%s" % (self.number+1, self.name)) 
    197197        self.emit(QtCore.SIGNAL("hide"), self.number, hide) 
    198198        self.update()