feat(spectrogramplot): Draw a time axis at the top

This commit is contained in:
Tobias Schneider
2016-08-05 10:28:53 +01:00
parent fc9e575052
commit 549d6fa679
5 changed files with 65 additions and 1 deletions

View File

@@ -333,3 +333,9 @@ void PlotView::updateView(bool reCenter)
// Re-paint
viewport()->update();
}
void PlotView::setSampleRate(off_t rate)
{
spectrogramPlot->setSampleRate(rate);
}