mute prop moved into meta

patch bump
This commit is contained in:
2022-11-16 15:51:26 +00:00
parent a09b07e1c2
commit ac382c4c32
7 changed files with 27 additions and 53 deletions

View File

@@ -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)