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 d6c4749297c04ff663ef98e8d6fb036708836a8f
parent 958de09a4c77612d4f5b0a747662422469d95738
Author: Mario Kruselj <mario.kruselj@gmail.com>
Date:   Wed,  8 May 2024 15:09:17 +0200

Fix "Deleted selected" typo in patch browser context menu
Also make letter case consistent for other context menu entries in the patch browser

Diffstat:
Msource/jucePluginEditorLib/patchmanager/grouptreeitem.cpp | 4++--
Msource/jucePluginEditorLib/patchmanager/list.cpp | 6+++---
2 files changed, 5 insertions(+), 5 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 @@ -194,7 +194,7 @@ namespace jucePluginEditorLib::patchManager } else if(getSourceType() == pluginLib::patchDB::SourceType::LocalStorage) { - menu.addItem("Deleted selected", [this, s = selectedPatches] + menu.addItem("Delete selected", [this, s = selectedPatches] { if(showDeleteConfirmationMessageBox()) { @@ -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); });