Skip to content

Commit 4ce31bf

Browse files
committed
Fix case inconsistency for threads parameter in BandpassFilter
1 parent 93f9ce2 commit 4ce31bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Plugins/BandpassFilter/BandpassFilter.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ void BandpassFilter::parameterValueChanged (Parameter* param)
206206
(*getDataStream (currentStream))["low_cut"],
207207
(*getDataStream (currentStream))["high_cut"]);
208208
}
209-
else if (param->getName().equalsIgnoreCase ("Threads"))
209+
else if (param->getName().equalsIgnoreCase ("threads"))
210210
{
211211
if (threadPool->getNumJobs() > 0)
212212
{

0 commit comments

Comments
 (0)