summaryrefslogtreecommitdiff
path: root/gtk2_ardour/utils.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-11-29 22:39:20 +0100
committerRobin Gareus <robin@gareus.org>2016-11-29 22:39:20 +0100
commitae1d4a93463448e94e946ff2c934cc5d1d5daabb (patch)
tree955700ccade5847a0e9b288c9477a81dd55db062 /gtk2_ardour/utils.cc
parentd3bb4e8b08ac3bc80013bce1a82eeae2ea53eea1 (diff)
Fix route color selection dialog
Diffstat (limited to 'gtk2_ardour/utils.cc')
-rw-r--r--gtk2_ardour/utils.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/utils.cc b/gtk2_ardour/utils.cc
index 16607348f3..fce66bced1 100644
--- a/gtk2_ardour/utils.cc
+++ b/gtk2_ardour/utils.cc
@@ -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;
}