From f409847488c3ac5e297f688434ae287509440071 Mon Sep 17 00:00:00 2001 From: Edgemeal <47255672+Edgemeal@users.noreply.github.com> Date: Thu, 24 Oct 2024 16:24:41 -0500 Subject: [PATCH] Update edgemeal_Play lanes in time selection.lua Should be checking for prev_track, instead of track --- Tracks/edgemeal_Play lanes in time selection.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tracks/edgemeal_Play lanes in time selection.lua b/Tracks/edgemeal_Play lanes in time selection.lua index 502b5e48d..e14185864 100644 --- a/Tracks/edgemeal_Play lanes in time selection.lua +++ b/Tracks/edgemeal_Play lanes in time selection.lua @@ -205,7 +205,7 @@ function Exit() SetAction(1068,repeatOn) -- restore user repeat mode setting reaper.set_action_options(8) -- disables toolbar highlight if no_buf ~= nil then SaveValues(no_buf, play_all, skip_comps, only_comps) end -- save app settings (this session only) - if track and PERFFLAGS then r.SetMediaTrackInfo_Value(track, "I_PERFFLAGS", PERFFLAGS) end -- restore users buffering setting + if prev_track and PERFFLAGS then r.SetMediaTrackInfo_Value(prev_track, "I_PERFFLAGS", PERFFLAGS) end -- restore users buffering setting end r.atexit(Exit)