Skip to content
Snippets Groups Projects
Commit 4d2f3299 authored by Josh Siegle's avatar Josh Siegle Committed by GitHub
Browse files

Merge pull request #166 from kmichaelfox/development

Cleanup stray debug statements
parents ad750b71 cddeea14
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,6 @@ void LfpDisplayCanvas::resized()
if (lfpDisplay->getSingleChannelState())
lfpDisplay->setChannelHeight(viewport->getHeight(),false);
std::cout << "number of channels " << nChans << std::endl;
lfpDisplay->setBounds(0,0,getWidth()-scrollBarThickness, lfpDisplay->getChannelHeight()*lfpDisplay->drawableChannels.size());
}
else
......
......@@ -74,8 +74,6 @@ void LfpDisplayEditor::buttonClicked(Button *button)
// (else) initialization errors. lots of time-critical cross dependencies here,
// should be cleaned up
updateSubprocessorSelectorOptions();
//((LfpDisplayCanvas *)canvas.get())->setDrawableSubprocessor(*(inputSubprocessorIndices.begin() + (subprocessorSelection->getSelectedId() - 1)));
// setCanvasDrawableSubprocessor(subprocessorSelection->getSelectedId() - 1);
canvas->update();
......@@ -98,7 +96,6 @@ void LfpDisplayEditor::comboBoxChanged(juce::ComboBox *cb)
{
if (cb == subprocessorSelection)
{
// setCanvasDrawableSampleRate(cb->getSelectedId() - 1);
setCanvasDrawableSubprocessor(cb->getSelectedId() - 1);
}
}
......@@ -120,7 +117,6 @@ void LfpDisplayEditor::updateSubprocessorSelectorOptions()
if (success) inputSampleRates.set(subProcessorIdx, lfpProcessor->getDataChannel(i)->getSampleRate());
// if (success) std::cout << "\t\tadding subprocessor index " << subProcessorIdx << std::endl;
}
int subprocessorToSet = -1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment