From f8c7615b1697199fd1c644ada6aaeeb4b1b3d93d Mon Sep 17 00:00:00 2001 From: Simon Elias Schneider Date: Tue, 17 Mar 2026 15:40:11 +0100 Subject: [PATCH] mpl_Adjust selected notes pitch:Fix function call to use VF_GetShortSmplName --- MIDI editor/mpl_Adjust selected notes pitch (mousewheel).lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MIDI editor/mpl_Adjust selected notes pitch (mousewheel).lua b/MIDI editor/mpl_Adjust selected notes pitch (mousewheel).lua index 58cd326c..22e8b530 100644 --- a/MIDI editor/mpl_Adjust selected notes pitch (mousewheel).lua +++ b/MIDI editor/mpl_Adjust selected notes pitch (mousewheel).lua @@ -111,7 +111,7 @@ if not take then return end local filename = ({reaper.get_action_context()})[2] - local script_title = GetShortSmplName(filename):gsub('%.lua','') + local script_title = VF_GetShortSmplName(filename):gsub('%.lua','') local oct_shift = script_title:match('octave')~= nil local inverted = script_title:match('inverted')~= nil local keysnap = script_title:match('keysnap')~= nil @@ -127,4 +127,4 @@ MoveNotesVertically(take, val>0, oct_shift, keysnap_pat, inverted) Undo_EndBlock('mpl_Adjust selected notes pitch (mousewheel)', 4) - end \ No newline at end of file + end