gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 50f299237b0d0ea97ad44d83d0736f88db2420cf
parent d46bdaf366f2512510c878857ff3c2939bb649bd
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu,  9 May 2024 12:14:33 +0200

Merge remote-tracking branch 'gearmulator/main' into oss/main

Diffstat:
Msource/jucePluginEditorLib/patchmanager/grouptreeitem.cpp | 4++--
Msource/jucePluginEditorLib/patchmanager/list.cpp | 4++--
2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/source/jucePluginEditorLib/patchmanager/grouptreeitem.cpp b/source/jucePluginEditorLib/patchmanager/grouptreeitem.cpp @@ -134,7 +134,7 @@ namespace jucePluginEditorLib::patchManager if(m_type == GroupType::DataSources) { - menu.addItem("Add Folders...", [this] + menu.addItem("Add folders...", [this] { juce::FileChooser fc("Select Folders"); @@ -156,7 +156,7 @@ namespace jucePluginEditorLib::patchManager } }); - menu.addItem("Add Files...", [this] + menu.addItem("Add files...", [this] { juce::FileChooser fc("Select Files"); if(fc.showDialog( diff --git a/source/jucePluginEditorLib/patchmanager/list.cpp b/source/jucePluginEditorLib/patchmanager/list.cpp @@ -290,11 +290,11 @@ namespace jucePluginEditorLib::patchManager } } menu.addSeparator(); - menu.addItem("Hide Duplicates (by hash)", true, m_hideDuplicatesByHash, [this] + menu.addItem("Hide duplicates (by hash)", true, m_hideDuplicatesByHash, [this] { setFilter(m_filter, !m_hideDuplicatesByHash, m_hideDuplicatesByName); }); - menu.addItem("Hide Duplicates (by name)", true, m_hideDuplicatesByName, [this] + menu.addItem("Hide duplicates (by name)", true, m_hideDuplicatesByName, [this] { setFilter(m_filter, m_hideDuplicatesByHash, !m_hideDuplicatesByName); });