Skip to content

Commit

Permalink
DlgRecording: make BrowseTableModel store the correct model key
Browse files Browse the repository at this point in the history
  • Loading branch information
ronso0 committed Jan 25, 2022
1 parent 9eb8efa commit 3674e31
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/library/recording/dlgrecording.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,10 @@ void DlgRecording::setFocus() {
}

void DlgRecording::refreshBrowseModel() {
QString recordingDir = m_pRecordingManager->getRecordingDir();
QString recordingDir =
m_pRecordingManager->getRecordingDir()
// append "/" so the model stores the complete path the model state key
.append(QDir::separator());
m_browseModel.setPath(mixxx::FileAccess(mixxx::FileInfo(recordingDir)));
}

Expand Down

0 comments on commit 3674e31

Please sign in to comment.