Skip to content

Commit

Permalink
Fix properties panel is not loaded on playlist selection
Browse files Browse the repository at this point in the history
  • Loading branch information
bmatherly committed Feb 28, 2024
1 parent 34cb408 commit 78bc28e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/docks/timelinedock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,10 @@ void TimelineDock::saveAndClearSelection()
m_savedSelectedTrack = m_selection.selectedTrack;
m_savedIsMultitrackSelected = m_selection.isMultitrackSelected;
m_savedSelectionUuids = selectionUuids();
setSelection();
m_selection.selectedClips = QList<QPoint>();
m_selection.selectedTrack = -1;
m_selection.isMultitrackSelected = false;
emit selectionChanged();
}

void TimelineDock::restoreSelection()
Expand Down

0 comments on commit 78bc28e

Please sign in to comment.