From bb5345614d6d4860c619e96fa174b3ffd4e8c262 Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Tue, 5 Dec 2017 01:30:07 +0100 Subject: Allow to pre-seed Lua action script params --- libs/ardour/ardour/luascripting.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'libs/ardour/ardour/luascripting.h') diff --git a/libs/ardour/ardour/luascripting.h b/libs/ardour/ardour/luascripting.h index a184c4058b..7570ff1bc8 100644 --- a/libs/ardour/ardour/luascripting.h +++ b/libs/ardour/ardour/luascripting.h @@ -80,11 +80,12 @@ struct LIBARDOUR_API LuaScriptParam { const std::string& n, const std::string& t, const std::string& d, - bool o) + bool o, bool p) : name (n) , title (t) , dflt (d) , optional (o) + , preseeded (p) , is_set (false) , value (d) {} @@ -93,6 +94,7 @@ struct LIBARDOUR_API LuaScriptParam { std::string title; std::string dflt; bool optional; + bool preseeded; bool is_set; std::string value; }; -- cgit v1.2.3