mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-17 04:06:26 +01:00
Remove heinous hack that is no longer required if we are
not attempting to track setting modified status. git-svn-id: svn://localhost/ardour2/branches/3.0@10800 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
013b31f1bb
commit
360b4aed17
1 changed files with 1 additions and 9 deletions
|
|
@ -99,16 +99,8 @@ void
|
||||||
VSTPlugin::set_parameter (uint32_t which, float val)
|
VSTPlugin::set_parameter (uint32_t which, float val)
|
||||||
{
|
{
|
||||||
_plugin->setParameter (_plugin, which, val);
|
_plugin->setParameter (_plugin, which, val);
|
||||||
|
|
||||||
if (_state->want_program == -1 && _state->want_chunk == 0) {
|
|
||||||
/* Heinous hack: Plugin::set_parameter below updates the `modified' status of the
|
|
||||||
current preset, but if _state->want_program is not -1 then there is a preset
|
|
||||||
setup pending or in progress, which we don't want any `modified' updates
|
|
||||||
to happen for. So we only do this if _state->want_program is -1.
|
|
||||||
*/
|
|
||||||
Plugin::set_parameter (which, val);
|
Plugin::set_parameter (which, val);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
uint32_t
|
uint32_t
|
||||||
VSTPlugin::nth_parameter (uint32_t n, bool& ok) const
|
VSTPlugin::nth_parameter (uint32_t n, bool& ok) const
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue