summaryrefslogtreecommitdiff
path: root/libs/ardour/luaproc.cc
diff options
context:
space:
mode:
authorJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2016-07-26 18:34:11 +0200
committerJulien "_FrnchFrgg_" RIVAUD <frnchfrgg@free.fr>2016-07-26 18:35:28 +0200
commit9079a6002c315fa7a1f03f773b691059bf15b45b (patch)
tree694d96c42fcb26540b1290d03c6bc651cea185e9 /libs/ardour/luaproc.cc
parentc2f5abc91ec01f885b5c30286f3c34be036271a0 (diff)
Call Plugin::load_preset() from LuaProc::load_preset()
So that the plugin knows that a preset has been loaded, and can send the signal accordingly.
Diffstat (limited to 'libs/ardour/luaproc.cc')
-rw-r--r--libs/ardour/luaproc.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/luaproc.cc b/libs/ardour/luaproc.cc
index c65afa86fe..48daf8cede 100644
--- a/libs/ardour/luaproc.cc
+++ b/libs/ardour/luaproc.cc
@@ -1218,7 +1218,7 @@ LuaProc::load_preset (PresetRecord r)
set_parameter (atoi (index->value().c_str()), atof (value->value().c_str ()));
}
}
- return true;
+ return Plugin::load_preset(r);
}
return false;
}