Changeset 2828

Show
Ignore:
Timestamp:
05/05/22 06:36:09 (2 years ago)
Author:
jwoithe
Message:

ffado-mixer: Python 3.10 type fixes for M-Audio device mixer.

Thanks to Salvador O.G. for the report posted to the ffado-users mailing
list which showed this change to be necessary.

Files:

Legend:

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

    r2803 r2828  
    588588            curr = self.hw.getContignuous(path, idx) 
    589589            state = -(curr / 0x7FFE) * 50 + 50 
    590             ctl.setValue(state
     590            ctl.setValue(int(state)
    591591            ctl.valueChanged.connect(self.updatePanning) 
    592592