Skip to content

Commit

Permalink
Call clipAdded signal last
Browse files Browse the repository at this point in the history
  • Loading branch information
sakertooth committed Nov 26, 2024
1 parent 5085f1a commit ce72295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/Track.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -335,8 +335,8 @@ Clip * Track::addClip( Clip * clip )
{
m_clips.push_back(clip);
clip->setTrack(this);
emit clipAdded(clip);
if (trackContainer()) { trackContainer()->updateAfterClipAdd(this, clip); }
emit clipAdded(clip);
return clip;
}

Expand Down

0 comments on commit ce72295

Please sign in to comment.