diff --git a/Tracks Properties/js_Propagate note and CC names of last clicked track to all selected tracks.lua b/Tracks Properties/js_Propagate note and CC names of last clicked track to all selected tracks.lua index 4e6c9324b..078229ea8 100644 --- a/Tracks Properties/js_Propagate note and CC names of last clicked track to all selected tracks.lua +++ b/Tracks Properties/js_Propagate note and CC names of last clicked track to all selected tracks.lua @@ -48,7 +48,7 @@ if not (type(tonumber(sourceString)) == "number") then sourceString = "" end ------------------------------------------------- -- Get user inputs (user may change source track) repeat - inputOK, input = reaper.GetUserInputs("Propagate note names", 2, "Source track number,Clear existing note/CC names?", sourceString .. ",y") + inputOK, input = reaper.GetUserInputs("Propagate note and CC names", 2, "Source track number,Clear existing note/CC names?", sourceString .. ",y") if not inputOK then return end sourceIndex, mustClear = input:match("(%d+),([yYnN])")