Skip to content

Commit

Permalink
Fix item initial selection
Browse files Browse the repository at this point in the history
Caused by trying to use wrong ID after full path change
  • Loading branch information
firthm01 committed Jan 22, 2024
1 parent e5fcbfe commit 1335f9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ void BinauralMonitoringJuceFrontendConnector::setDataFileComboBox(
entry->setLightFont(!df->isBearRelease);
}
if (auto df = p_->dataFileManager.getSelectedDataFileInfo()) {
comboBox->setSelectedId(df->filename,
comboBox->setSelectedId(df->fullPath.getFullPathName(),
juce::NotificationType::dontSendNotification);
}
}
Expand Down

0 comments on commit 1335f9b

Please sign in to comment.