mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
Add Lua binding to query current editor-mixer route
https://discourse.ardour.org/t/lua-editor-mixer-strip/109886
This commit is contained in:
parent
35686baa2b
commit
00c76e785c
4 changed files with 15 additions and 0 deletions
|
|
@ -176,6 +176,15 @@ Editor::show_editor_mixer (bool yn)
|
|||
#endif
|
||||
}
|
||||
|
||||
std::shared_ptr<ARDOUR::Route>
|
||||
Editor::current_mixer_stripable () const
|
||||
{
|
||||
if (current_mixer_strip) {
|
||||
return current_mixer_strip->route ();
|
||||
}
|
||||
return std::shared_ptr<ARDOUR::Route> ();
|
||||
}
|
||||
|
||||
#ifdef __APPLE__
|
||||
void
|
||||
Editor::ensure_all_elements_drawn ()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue