mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-18 12:46:32 +01:00
Add BasicUI::config()
Towards removing the direct use of Session by surfaces.
This commit is contained in:
parent
850bd44702
commit
1f17d0834c
11 changed files with 36 additions and 18 deletions
|
|
@ -800,3 +800,15 @@ BasicUI::make_port_name_non_relative (const std::string& name) const
|
|||
{
|
||||
return _session->engine ().make_port_name_non_relative (name);
|
||||
}
|
||||
|
||||
const SessionConfiguration&
|
||||
BasicUI::config () const
|
||||
{
|
||||
return _session->config;
|
||||
}
|
||||
|
||||
SessionConfiguration&
|
||||
BasicUI::config ()
|
||||
{
|
||||
return _session->config;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue