1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-10-19 09:01:15 +02:00

Give TrackArtist a back-pointer to TrackPanel

This commit is contained in:
Paul Licameli
2018-11-05 10:45:03 -05:00
parent 9bb235c274
commit 50cf2e9a1f
7 changed files with 25 additions and 10 deletions

View File

@@ -532,7 +532,7 @@ void OnPrint(const CommandContext &context)
auto &project = context.project;
auto name = project.GetName();
auto tracks = project.GetTracks();
HandlePrint(&project, name, tracks);
HandlePrint(&project, name, tracks, *project.GetTrackPanel());
}
void OnExit(const CommandContext &WXUNUSED(context) )