Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion reaper_csurf_integrator/control_surface_integrator.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ extern void RequestFocusedFXDialog(ZoneManager *zoneManager);
extern void CloseFocusedFXDialog();
extern void UpdateLearnWindow(ZoneManager *zoneManager);
extern void InitBlankLearnFocusedFXZone(ZoneManager *zoneManager, Zone *fxZone, MediaTrack *track, int fxSlot);
extern void FillMissingFXZoneContexts(ZoneManager *zoneManager, Zone *fxZone);
extern void ShutdownLearn();

extern int g_debugLevel;
Expand Down Expand Up @@ -1484,7 +1485,8 @@ class ZoneManager
{
learnFocusedFXZone_ = make_shared<Zone>(csi_, this, GetNavigatorForTrack(track), fxIndex, fxName, zoneInfo_[fxName].alias, zoneInfo_[fxName].filePath);
LoadZoneFile(learnFocusedFXZone_.get(), "");

FillMissingFXZoneContexts(this, learnFocusedFXZone_.get());

learnFocusedFXZone_->Activate();
}
else
Expand Down
Loading