mirror of
https://github.com/onyx-and-iris/xair-api-python.git
synced 2026-04-18 13:33:31 +00:00
mute prop moved into meta
patch bump
This commit is contained in:
@@ -69,3 +69,13 @@ def geq_prop(param):
|
||||
self.setter(param, lin_set(-15, 15, val))
|
||||
|
||||
return property(fget, fset)
|
||||
|
||||
|
||||
def mute_prop():
|
||||
def fget(self):
|
||||
return not self.mix.on
|
||||
|
||||
def fset(self, val):
|
||||
self.mix.on = not val
|
||||
|
||||
return property(fget, fset)
|
||||
|
||||
Reference in New Issue
Block a user