remove infinitely recursive, never-called method from MidiView

This commit is contained in:
Paul Davis 2025-08-19 23:10:50 -06:00
parent e77467adbe
commit 1e2a2d5506
2 changed files with 0 additions and 13 deletions

View file

@ -4001,18 +4001,6 @@ MidiView::get_modifier_name () const
return "editable region"; return "editable region";
} }
uint32_t
MidiView::get_fill_color() const
{
std::string mod_name = get_modifier_name();
if (mod_name.empty ()) {
return get_fill_color();
} else {
return UIConfiguration::instance().color_mod (get_fill_color(), mod_name);
}
}
void void
MidiView::midi_channel_mode_changed () MidiView::midi_channel_mode_changed ()
{ {

View file

@ -130,7 +130,6 @@ class MidiView : public virtual sigc::trackable, public LineMerger
// inline ARDOUR::ColorMode color_mode() const { return _background->color_mode(); } // inline ARDOUR::ColorMode color_mode() const { return _background->color_mode(); }
virtual uint32_t get_fill_color() const;
void color_handler (); void color_handler ();
void show_step_edit_cursor (Temporal::Beats pos); void show_step_edit_cursor (Temporal::Beats pos);