1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-15 02:45:23 +01:00

Define CellularPanel::Root

This commit is contained in:
Paul Licameli
2018-09-17 12:53:34 -04:00
parent 30d55f476e
commit 4fe97acbc9
5 changed files with 25 additions and 0 deletions

View File

@@ -2102,6 +2102,11 @@ void AdornedRulerPanel::GetMaxSize(wxCoord *width, wxCoord *height)
}
// CellularPanel implementation
std::shared_ptr<TrackPanelNode> AdornedRulerPanel::Root()
{
return {};
}
auto AdornedRulerPanel::FindCell(int mouseX, int mouseY) -> FoundCell
{
bool mayScrub = mProject->GetScrubber().CanScrub() &&