From 57fc25c28d32da19184ea96326e0cd329f71b94c Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Mon, 26 Jun 2023 13:38:28 -0600 Subject: [PATCH] lollis: tweak color of dragging line (still not sure about this) --- gtk2_ardour/velocity_ghost_region.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/velocity_ghost_region.cc b/gtk2_ardour/velocity_ghost_region.cc index c29fb6dcb6..a176971b3a 100644 --- a/gtk2_ardour/velocity_ghost_region.cc +++ b/gtk2_ardour/velocity_ghost_region.cc @@ -116,7 +116,7 @@ VelocityGhostRegion::base_event (GdkEvent* ev) if (!dragging_line) { dragging_line = new ArdourCanvas::PolyLine (_note_group); dragging_line->set_ignore_events (true); - dragging_line->set_outline_color (0x00ff00ff); + dragging_line->set_outline_color (UIConfiguration::instance().color ("midi note selected outline")); } dragging_line->set (ArdourCanvas::Points()); dragging_line->show();