commit 5c398bddd196efdbec360c588aff13fe4bdd3948
parent db589075ec1f148b653f4002444a8373b931e2b5
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date: Sat, 4 May 2024 11:06:53 +0200
fix name of local storage source not displayed in patch info
Diffstat:
1 file changed, 2 insertions(+), 0 deletions(-)
diff --git a/source/jucePluginEditorLib/patchmanager/info.cpp b/source/jucePluginEditorLib/patchmanager/info.cpp
@@ -147,6 +147,8 @@ namespace jucePluginEditorLib::patchManager
case pluginLib::patchDB::SourceType::Rom:
case pluginLib::patchDB::SourceType::Folder:
return _source->name;
+ case pluginLib::patchDB::SourceType::LocalStorage:
+ return _source->name;
case pluginLib::patchDB::SourceType::File:
{
auto t = _source->name;