commit a994c7f9d6482d052019563905950dfeb18fa2eb
parent e5f823df3f198e2aaee10bfff12166d84a349ce1
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Sun, 20 Mar 2022 19:06:10 +0100
better menu entry name
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/jucePlugin/PluginEditor.cpp b/source/jucePlugin/PluginEditor.cpp
@@ -139,7 +139,7 @@ void AudioPluginAudioProcessorEditor::openMenu()
if(editor)
{
skinMenu.addSeparator();
- skinMenu.addItem("Export current skin to folder", true, false, [this]{exportCurrentSkin();});
+ skinMenu.addItem("Export current skin to 'skins' folder on disk", true, false, [this]{exportCurrentSkin();});
}
}