Changeset 2709

Show
Ignore:
Timestamp:
10/12/17 16:11:49 (6 years ago)
Author:
jwoithe
Message:

rme: correctly save playback and output mixer settings.

A cut-and-paste oversight at the time the save/restore code was written
resulted in the input matrix values being saved for the playback and output
matrix mixers as well. Currect this so the right matrix mixer will be read
when writing the respective parts of the saved configuration.

Thanks to Vince who reported the symptoms on ffado-devel and identified the
cause.

Files:

Legend:

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

    r2694 r2709  
    556556 
    557557        saveString.append('%s<playbackmatrix>\n' % indent) 
    558         saveString.extend(self.inputmatrix.saveSettings(idt)) 
     558        saveString.extend(self.playbackmatrix.saveSettings(idt)) 
    559559        # Do not forget to mention the adopted rule for matrix columns mixer 
    560560        #  This might be useful for future import function 
     
    565565 
    566566        saveString.append('%s<outputmatrix>\n' % indent) 
    567         saveString.extend(self.inputmatrix.saveSettings(idt)) 
     567        saveString.extend(self.outputmatrix.saveSettings(idt)) 
    568568        # Do not forget to mention the adopted rule for matrix columns mixer 
    569569        #  This might be useful for future import function