ensure that MidiStreamView calls a color handler for each region

This allows MIDI regions to auto-update during theme editing
This commit is contained in:
Paul Davis 2023-12-09 14:07:58 -07:00
parent 7ee5a3f24d
commit f407d4e3b7
2 changed files with 6 additions and 1 deletions

View file

@ -567,6 +567,10 @@ MidiStreamView::color_handler ()
} else {
canvas_rect->set_fill_color (UIConfiguration::instance().color ("midi bus base"));
}
for (auto & rv : region_views) {
rv->color_handler ();
}
}
void