Skip to content

Commit

Permalink
Ignore disabled tracks in TimelineWidget (TimelineUI).
Browse files Browse the repository at this point in the history
  • Loading branch information
ggarra13 committed Dec 20, 2024
1 parent 14b0276 commit f310068
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions src/lib/mrvEdit/mrvEditCallbacks.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2834,6 +2834,9 @@ namespace mrv
{
if (const auto* track = dynamic_cast<otio::Track*>(child.value))
{
if (!track->enabled())
continue;

bool visibleTrack = false;
if (otio::Track::Kind::video == track->kind())
{
Expand Down
2 changes: 1 addition & 1 deletion tlRender

0 comments on commit f310068

Please sign in to comment.