Skip to content

Commit

Permalink
fixing type in source - Version number:2.8.155
Browse files Browse the repository at this point in the history
  • Loading branch information
rorywalsh committed Dec 12, 2022
1 parent 3e3f030 commit 7ce2929
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ endif()


if(NOT DEFINED BUILD_VERSION)
set(BUILD_VERSION 2.8.154)
set(BUILD_VERSION 2.8.155)
endif()

project(${PROJECT_NAME} VERSION ${BUILD_VERSION})
Expand Down
2 changes: 1 addition & 1 deletion Source/Audio/Plugins/CsoundPluginProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ void CsoundPluginProcessor::initAllCsoundChannels (ValueTree cabbageData)
if (typeOfWidget == CabbageWidgetTypes::combobox || typeOfWidget == CabbageWidgetTypes::listbox)
{
const String fileType = CabbageWidgetData::getStringProp(cabbageData.getChild(i), CabbageIdentifierIds::filetype);
const String fileType = CabbageWidgetData::getStringProp(cabbageData.getChild(i), CabbageIdentifierIds::filetype);

//if we are dealing with a combobox that reads files from a directory, we need to load them before the GUI opens...
if (!CabbageWidgetData::getStringProp(cabbageData.getChild(i), CabbageIdentifierIds::filetype).contains("preset")
&& !CabbageWidgetData::getStringProp(cabbageData.getChild(i), CabbageIdentifierIds::filetype).contains("*.snaps")
Expand Down

0 comments on commit 7ce2929

Please sign in to comment.