1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-23 17:30:17 +01:00

Improve 'Import Raw Data' dialog (#679)

* Add sample rate preset(combo box) to Import Raw Data dialog

* Import Raw Data dialog: Get default sample rate from Project Rate

* Fix build
This commit is contained in:
dofuuz
2020-09-27 22:03:37 +09:00
committed by GitHub
parent c5741cc1da
commit f144a1f689
3 changed files with 19 additions and 7 deletions

View File

@@ -603,7 +603,7 @@ void OnImportRaw(const CommandContext &context)
TrackHolders newTracks;
::ImportRaw(&window, fileName, &trackFactory, newTracks);
::ImportRaw(project, &window, fileName, &trackFactory, newTracks);
if (newTracks.size() <= 0)
return;