prevent double-emission of PresentationInfo::Change when making mixer-view selection...
[ardour.git] / scripts / amp4.lua
index 1fc8773592a15172a0509b2e252e9551f35eb5ec..6254082ad936a101d3fd3dca24f457c9800bc9bb 100644 (file)
@@ -1,11 +1,9 @@
 ardour {
        ["type"]    = "dsp",
-       name        = "Amplifier",
+       name        = "a-Amplifier",
        category    = "Amplifier",
        license     = "MIT",
-       author      = "Robin Gareus",
-       email       = "robin@gareus.org",
-       site        = "http://gareus.org",
+       author      = "Ardour Team",
        description = [[Versatile +/- 20dB multichannel amplifier]]
 }
 
@@ -78,14 +76,17 @@ function dsp_run (ins, outs, n_samples)
                off = off + siz
        end
 
+--[[
        if changed then
                self:queue_draw () -- notify display
        end
+--]]
 end
 
 -------------------------------------------------------------------------------
 --- inline display + text example
 
+--[[
 local txt = nil -- cache pango context globally
 
 function render_inline (ctx, w, max_h)
@@ -115,3 +116,4 @@ function render_inline (ctx, w, max_h)
 
        return {w, h}
 end
+--]]