fixed bug where an unindexed video would cache a blank first frame
This commit is contained in:
+1
-1
@@ -77,7 +77,7 @@ QVariant NodeInput::get_value(const rational& time)
|
||||
// Retrieve the value
|
||||
if (!edges_.isEmpty()) {
|
||||
// A connection - use the output of the connected Node
|
||||
value_ = edges_.first()->output()->get_value(time);
|
||||
value_ = get_connected_output()->get_value(time);
|
||||
} else {
|
||||
// No connections - use the internal value
|
||||
// FIXME: Re-implement keyframing
|
||||
|
||||
Reference in New Issue
Block a user