fixed bug that wouldn't set a footage stream's enabled property correctly

This commit is contained in:
itsmattkc
2019-12-30 22:22:48 +11:00
parent 570fa4e5b0
commit 441555e9f2
4 changed files with 4 additions and 6 deletions
+1 -2
View File
@@ -64,7 +64,6 @@ void TimelineWidget::ImportTool::DragEnter(TimelineViewMouseEvent *event)
// Listen for MIME data from a ProjectViewModel
if (mime_formats.contains("application/x-oliveprojectitemdata")) {
// FIXME: Implement audio insertion
// Data is drag/drop data from a ProjectViewModel
QByteArray model_data = event->GetMimeData()->data("application/x-oliveprojectitemdata");
@@ -107,7 +106,7 @@ void TimelineWidget::ImportTool::DragEnter(TimelineViewMouseEvent *event)
TrackType track_type = TrackTypeFromStreamType(stream->type());
// Check if this stream has a compatible TrackList
if (track_type == kTrackTypeNone) {
if (track_type == kTrackTypeNone || !stream->enabled()) {
continue;
}