diff options
author | Robin Gareus <robin@gareus.org> | 2016-03-21 20:58:53 +0100 |
---|---|---|
committer | Robin Gareus <robin@gareus.org> | 2016-03-21 20:58:53 +0100 |
commit | b47fb7a0b2669ff66f651d0457e3753659df8350 (patch) | |
tree | c6a67335cdc392e0703610cfc523dae20c3345d7 /scripts/scope.lua | |
parent | 9f0130249d3b5f56a4ed3cb84d8e8f2e62053206 (diff) | |
download | ardour-b47fb7a0b2669ff66f651d0457e3753659df8350.zip ardour-b47fb7a0b2669ff66f651d0457e3753659df8350.tar.gz ardour-b47fb7a0b2669ff66f651d0457e3753659df8350.tar.bz2 |
update scripts (Lua namespace refactoring)
Diffstat (limited to 'scripts/scope.lua')
-rw-r--r-- | scripts/scope.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/scope.lua b/scripts/scope.lua index 4a00b07..32881fe 100644 --- a/scripts/scope.lua +++ b/scripts/scope.lua @@ -140,9 +140,9 @@ function render_inline (ctx, w, max_h) -- prepare drawing ctx:set_line_width (1.0) - local dash3 = ARDOUR.DoubleVector () + local dash3 = C.DoubleVector () dash3:add ({1, 3}) - local dash4 = ARDOUR.DoubleVector () + local dash4 = C.DoubleVector () dash4:add ({1, 4}) -- plot every channel |