fixed bug where an unindexed video would cache a blank first frame

This commit is contained in:
itsmattkc
2019-09-10 19:12:19 +10:00
parent 4c40475a6c
commit 69ca2b2a50
7 changed files with 14 additions and 6 deletions
+1 -1
View File
@@ -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