mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-27 17:07:40 +01:00
Use dBs for send gain automation controls too.
git-svn-id: svn://localhost/ardour2/branches/3.0@11539 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
3a4650cba7
commit
cecf343109
2 changed files with 10 additions and 0 deletions
|
|
@ -64,6 +64,8 @@ class Send : public Delivery
|
|||
|
||||
bool set_name (const std::string& str);
|
||||
|
||||
std::string value_as_string (boost::shared_ptr<AutomationControl>) const;
|
||||
|
||||
static uint32_t how_many_sends();
|
||||
static void make_unique (XMLNode &, Session &);
|
||||
|
||||
|
|
|
|||
|
|
@ -357,3 +357,11 @@ Send::display_to_user () const
|
|||
|
||||
return true;
|
||||
}
|
||||
|
||||
string
|
||||
Send::value_as_string (boost::shared_ptr<AutomationControl> ac) const
|
||||
{
|
||||
return _amp->value_as_string (ac);
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue