From ae02131fe91976484a41b6ee69d2f27fd96d9403 Mon Sep 17 00:00:00 2001 From: Jiri Popek Date: Sat, 2 Aug 2025 22:23:19 +0200 Subject: [PATCH 1/3] RenameDialog: focus the input box --- vite/src/pipedal/RenameDialog.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vite/src/pipedal/RenameDialog.tsx b/vite/src/pipedal/RenameDialog.tsx index e802165..21dbcf7 100644 --- a/vite/src/pipedal/RenameDialog.tsx +++ b/vite/src/pipedal/RenameDialog.tsx @@ -129,7 +129,7 @@ export default class RenameDialog extends ResizeResponsiveComponent ); } -} \ No newline at end of file +} From 5fafcabf82d27e5acbe2ff2dc25128e0c133dabb Mon Sep 17 00:00:00 2001 From: Jiri Popek Date: Sat, 2 Aug 2025 22:21:04 +0200 Subject: [PATCH 2/3] MidiBindingsDialog: Plugin name and note value - Plugin name to show the title set - MIDI note to show the number and the note --- vite/src/pipedal/MidiBindingView.tsx | 4 ++-- vite/src/pipedal/MidiBindingsDialog.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vite/src/pipedal/MidiBindingView.tsx b/vite/src/pipedal/MidiBindingView.tsx index 861cfb2..f11b5c9 100644 --- a/vite/src/pipedal/MidiBindingView.tsx +++ b/vite/src/pipedal/MidiBindingView.tsx @@ -205,7 +205,7 @@ const MidiBindingView = for (let i = 0; i < 127; ++i) { result.push( - {Utility.midiNoteName(i)} + {i} ({Utility.midiNoteName(i)}) ) } @@ -661,4 +661,4 @@ const MidiBindingView = }, styles); -export default MidiBindingView; \ No newline at end of file +export default MidiBindingView; diff --git a/vite/src/pipedal/MidiBindingsDialog.tsx b/vite/src/pipedal/MidiBindingsDialog.tsx index 7ab6f9a..d5b9fa6 100644 --- a/vite/src/pipedal/MidiBindingsDialog.tsx +++ b/vite/src/pipedal/MidiBindingsDialog.tsx @@ -185,7 +185,7 @@ export const MidiBindingDialog = - {plugin.name} + {item.title ? item.title : plugin.name} @@ -318,4 +318,4 @@ export const MidiBindingDialog = styles); -export default MidiBindingDialog; \ No newline at end of file +export default MidiBindingDialog; From 51786b9235efc0d7db30aeabe54bbf3931a41240 Mon Sep 17 00:00:00 2001 From: Jiri Popek Date: Mon, 4 Aug 2025 13:31:41 +0200 Subject: [PATCH 3/3] Update MidiBindingView.tsx remove unnecessary () Signed-off-by: Jiri Popek --- vite/src/pipedal/MidiBindingView.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite/src/pipedal/MidiBindingView.tsx b/vite/src/pipedal/MidiBindingView.tsx index f11b5c9..4c657c6 100644 --- a/vite/src/pipedal/MidiBindingView.tsx +++ b/vite/src/pipedal/MidiBindingView.tsx @@ -205,7 +205,7 @@ const MidiBindingView = for (let i = 0; i < 127; ++i) { result.push( - {i} ({Utility.midiNoteName(i)}) + {i} {Utility.midiNoteName(i)} ) }