fixed regression from moving length to a nodeparam

Splitting commands would run CopyInputs after set_length. Since length is now
a parameter (aka a NodeInput) the former would override the latter breaking the
implementation. This commit fixes that.
This commit is contained in:
itsmattkc
2019-12-18 01:20:04 +11:00
parent 29ae366659
commit aae756b44c
3 changed files with 17 additions and 15 deletions
+1 -1
View File
@@ -45,7 +45,7 @@ Block::Block() :
AddInput(media_out_input_);
// A block's length must be greater than 0
set_length(1);
set_length_and_media_out(1);
}
QString Block::Category() const