ported functions to new node type

This commit is contained in:
itsmattkc
2019-05-13 12:00:15 +10:00
parent f796c2b379
commit 49feb12999
53 changed files with 296 additions and 269 deletions
+2 -2
View File
@@ -120,8 +120,8 @@ void EffectsPanel::Load() {
// Check if one of the open effects contains the row currently active in the graph editor. If not, we'll have
// to clear the graph editor later.
if (!graph_editor_row_is_still_active) {
for (int k=0;k<effects_to_open.at(j)->row_count();k++) {
NodeIO* row = effects_to_open.at(j)->row(k);
for (int k=0;k<effects_to_open.at(j)->ParameterCount();k++) {
NodeIO* row = effects_to_open.at(j)->Parameter(k);
if (row == panel_graph_editor->get_row()) {
graph_editor_row_is_still_active = true;
break;