From 75b3efa9f88efc4550d8b907a3c84c3d15ce7e6e Mon Sep 17 00:00:00 2001 From: "v.audacity" Date: Fri, 21 Nov 2014 01:08:34 +0000 Subject: [PATCH] I left in this commented-out code as reminder where it's easy to change per-track waveform colors. It's probably better to go to the Audacity_UmixIt_&_branding branch altogether for this feature, so I got rid of the commented out code. --- src/MixerBoard.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/MixerBoard.cpp b/src/MixerBoard.cpp index 70e012b74..08d496a8b 100644 --- a/src/MixerBoard.cpp +++ b/src/MixerBoard.cpp @@ -688,11 +688,7 @@ void MixerTrackCluster::UpdateMeter(const double t0, const double t1) wxColour MixerTrackCluster::GetTrackColor() { - //#if (AUDACITY_BRANDING == BRAND_UMIXIT) - // return AColor::GetTrackColor((void*)mLeftTrack); - //#else - return wxColour(102, 255, 102); // same as Meter playback color - //#endif + return wxColour(102, 255, 102); // same as Meter playback color }