NOOP: remove unnecessary namespace qualifier

BTW, ColorMode needs to move from libardour into the GUI
This commit is contained in:
Paul Davis 2023-06-21 17:41:07 -06:00
parent 25bb43e285
commit f3e996bdb7
1 changed files with 2 additions and 2 deletions

View File

@ -195,14 +195,14 @@ NoteBase::base_color (int velocity, ARDOUR::ColorMode color_mode, Gtkmm2ext::Col
uint8_t opacity = std::max(min_opacity, uint8_t(velocity + velocity));
switch (color_mode) {
case ARDOUR::TrackColor:
case TrackColor:
{
const uint32_t region_color = default_color;
return UINT_INTERPOLATE (UINT_RGBA_CHANGE_A (region_color, opacity), _selected_col,
0.5);
}
case ARDOUR::ChannelColors:
case ChannelColors:
return UINT_INTERPOLATE (UINT_RGBA_CHANGE_A (NoteBase::midi_channel_colors[channel], opacity),
_selected_col, 0.5);