Fix route color selection dialog

This commit is contained in:
Robin Gareus 2016-11-29 22:39:20 +01:00
parent d3bb4e8b08
commit ae1d4a9346
2 changed files with 2 additions and 2 deletions

View file

@ -276,7 +276,7 @@ Gdk::Color
ARDOUR_UI_UTILS::gdk_color_from_rgba (uint32_t rgba)
{
Gdk::Color c;
set_color_from_rgb (c, rgba);
set_color_from_rgb (c, rgba >> 8);
return c;
}