From 98a27ca2bdb38c4e2d4d6e5b94d49d556126c6d4 Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Mon, 4 Sep 2023 09:56:25 -0700 Subject: [PATCH] Add support for drag / drop modulation --- Changelist.txt | 4 ++++ modules/gin | 2 +- plugin/Source/PluginEditor.h | 3 ++- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/Changelist.txt b/Changelist.txt index 0e6475c..3256e50 100644 --- a/Changelist.txt +++ b/Changelist.txt @@ -1,3 +1,7 @@ +0.0.5: + +- Add drag/drop for assigning modulation + 0.0.4: - Another attempt at wt crash diff --git a/modules/gin b/modules/gin index 176aabe..7a1b572 160000 --- a/modules/gin +++ b/modules/gin @@ -1 +1 @@ -Subproject commit 176aabea6a512a97dbf6e6d17211b8533c35d3cd +Subproject commit 7a1b572b03c9de60c30e62ca032559189f70ad29 diff --git a/plugin/Source/PluginEditor.h b/plugin/Source/PluginEditor.h index f6d8541..4acd141 100644 --- a/plugin/Source/PluginEditor.h +++ b/plugin/Source/PluginEditor.h @@ -6,7 +6,8 @@ #include "Editor.h" //============================================================================== -class WavetableAudioProcessorEditor : public gin::ProcessorEditor +class WavetableAudioProcessorEditor : public gin::ProcessorEditor, + public juce::DragAndDropContainer { public: WavetableAudioProcessorEditor (WavetableAudioProcessor&);