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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user