mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-09 23:25:43 +01:00
Refine condition for auto opening instrument plugin UI
This commit is contained in:
parent
5960ad2e0f
commit
7bb7f21ae0
1 changed files with 2 additions and 1 deletions
|
|
@ -4787,7 +4787,8 @@ Editor::maybe_show_instrument_plugin (std::shared_ptr<MidiTrack> mt)
|
|||
if (!pi) {
|
||||
return;
|
||||
}
|
||||
if (pi->what_can_be_automated ().size () == 0) {
|
||||
|
||||
if (pi->what_can_be_automated ().size () == 0 && !pi->plugin ()->has_editor ()) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue