fix SNAFU in track-properties script

This commit is contained in:
Robin Gareus 2016-08-18 19:49:16 +02:00
parent 907c56234c
commit 3dc71953de

View file

@ -32,7 +32,7 @@ function factory () return function ()
t:set_comment ("This is a Drum Track", nil)
-- and set the fader to -7dB == 10 ^ (0.05 * -7)
t:amp():gain_control():set_value (10 ^ (0.05 * -7), PBD.GroupControlDisposition.NoGroup)
t:gain_control():set_value (10 ^ (0.05 * -7), PBD.GroupControlDisposition.NoGroup)
end
end
end end