Skip to content
Snippets Groups Projects
Commit 907d476b authored by Josh Siegle's avatar Josh Siegle
Browse files

Merge pull request #82 from open-ephys/RhythmBandwidthFixes

Bandwidth changes when acquisition is active...
parents 7c2f2311 3fe26dc6
Branches
Tags
No related merge requests found
......@@ -294,6 +294,16 @@ void BandwidthInterface::labelTextChanged(Label* label)
label->setText(String(roundFloatToInt(actualLowerBandwidth)), dontSendNotification);
}
}
else if (editor->acquisitionIsActive)
{
editor->sendActionMessage("Can't change bandwidth while acquisition is active!");
if (label == upperBandwidthSelection)
label->setText(lastHighCutString, dontSendNotification);
else
label->setText(lastLowCutString, dontSendNotification);
return;
}
}
void BandwidthInterface::setLowerBandwidth(double value)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment