summaryrefslogtreecommitdiff
path: root/tascam_fw_console/strips.py
diff options
context:
space:
mode:
authorsbahling <sbahling@mudgum.net>2018-11-02 20:40:53 +0100
committersbahling <sbahling@mudgum.net>2018-11-02 20:40:53 +0100
commitef03b9e3ee126be9810f96cf2d71b5fe0c1f33a3 (patch)
treee03c5ed83b3bb110ffa2fbeb868592b3e857aa43 /tascam_fw_console/strips.py
parent70ff37debca07c6711c104085df70c4124cde091 (diff)
downloadtascam-fw-osc-ef03b9e3ee126be9810f96cf2d71b5fe0c1f33a3.tar.gz
tascam-fw-osc-ef03b9e3ee126be9810f96cf2d71b5fe0c1f33a3.tar.xz
tascam-fw-osc-ef03b9e3ee126be9810f96cf2d71b5fe0c1f33a3.zip
Simplify Fader API
Diffstat (limited to 'tascam_fw_console/strips.py')
-rw-r--r--tascam_fw_console/strips.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tascam_fw_console/strips.py b/tascam_fw_console/strips.py
index c14a22a..5da97e0 100644
--- a/tascam_fw_console/strips.py
+++ b/tascam_fw_console/strips.py
@@ -38,7 +38,7 @@ class Strip():
self._rec = False
self.pan = 0.5
self.trimdb = 0.0
- self.fader = Fader(self.console, self)
+ self.fader = Fader(self)
self.name = None
self.encoder_handlers = {'PAN': self.send_pan,