Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Repaint clips of track on removal
  • Loading branch information
khoidauminh committed Feb 17, 2025
commit bf000e391f5789fba8c1309f5a6f398196c506f0
2 changes: 2 additions & 0 deletions src/gui/clips/ClipView.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -306,6 +306,8 @@ void ClipView::remove()
// as actually deleting the Clip with the deleteLater function. That being said, it shouldn't
// be possible to make a Clip without a Track (i.e., Clip::getTrack is never nullptr).
m_clip->deleteLater();

m_trackView->update();
}


Expand Down
Loading