mirror of
https://github.com/alsa-project/alsa-lib.git
synced 2025-10-29 05:40:25 -04:00
fix write in simple mixer API - python backends
This commit is contained in:
parent
8a035282ac
commit
de2b7a42d7
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ class StandardElement(BaseElement):
|
|||
if self.volumearray[dir][chn] == val:
|
||||
return
|
||||
self.volumearray[dir][chn] = val
|
||||
hv = HValue(self.volume)
|
||||
hv = HValue(self.volume[dir])
|
||||
hv.setArray(self.volumeinfo[dir].type, self.volumearray[dir])
|
||||
hv.write()
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue