fixed bug where image types would not have videoinput nodes created

Fixes issue where still images would render completely blank.
This commit is contained in:
itsmattkc
2019-11-24 02:06:09 +09:00
parent 289cb889ef
commit 6899c5e530
@@ -221,6 +221,7 @@ void TimelineWidget::ImportTool::DragDrop(TimelineViewMouseEvent *event)
switch (footage_stream->type()) {
case Stream::kVideo:
case Stream::kImage:
{
VideoInput* video_input = new VideoInput();
video_input->SetFootage(footage_stream);