13
0

add the final virtual GhostRegion method to VelocityGhostRegion

This commit is contained in:
Paul Davis 2024-09-17 09:35:02 -06:00
parent 76104f994b
commit a72bde5d3c
2 changed files with 7 additions and 0 deletions

View File

@ -117,3 +117,9 @@ VelocityGhostRegion::update_contents_height ()
{
VelocityDisplay::redisplay ();
}
void
VelocityGhostRegion::update_hit (GhostEvent* gev)
{
update_note (gev);
}

View File

@ -43,6 +43,7 @@ class VelocityGhostRegion : public MidiGhostRegion, public VelocityDisplay
void note_selected (NoteBase*);
void update_note (GhostEvent*);
void update_contents_height ();
void update_hit (GhostEvent*);
ArdourCanvas::Rectangle& base_item();