commit 5117a064aaa8bba9a2b8c8dd95bab6e20d2a611c
parent cd47e1da4d9be011a93f332be0de6153ebdc1fad
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Wed, 16 Mar 2022 23:39:00 +0100
remove 3rd skin selection option
Diffstat:
1 file changed, 0 insertions(+), 1 deletion(-)
diff --git a/source/jucePlugin/PluginEditor.cpp b/source/jucePlugin/PluginEditor.cpp
@@ -114,7 +114,6 @@ void AudioPluginAudioProcessorEditor::mouseDown(const juce::MouseEvent& event)
juce::PopupMenu skinMenu;
skinMenu.addItem("Modern", true, skinId == 0,[this] {loadSkin(0);});
skinMenu.addItem("Classic", true, skinId == 1,[this] {loadSkin(1);});
- skinMenu.addItem("Generic", true, skinId == 2,[this] {loadSkin(2);});
juce::PopupMenu scaleMenu;
scaleMenu.addItem("50%", true, scale == 50, [this] { setGuiScale(50); });