From 03788a58a6ca787a9da348a7d19e609f1c6f234c Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Sun, 2 Aug 2015 04:50:39 -0400 Subject: [PATCH] Channel cascade -- yes. Move cascade -- no. --- src/TrackPanel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/TrackPanel.cpp b/src/TrackPanel.cpp index 43834de37..1e1714e90 100644 --- a/src/TrackPanel.cpp +++ b/src/TrackPanel.cpp @@ -158,6 +158,7 @@ is time to refresh some aspect of the screen. // This conditional compilation switch does not need to be seen // in any other file, so I define it here, not in Experimental.h -- PRL +#undef EXPERIMENTAL_CASCADE_MOVE_MENU #define EXPERIMENTAL_CASCADE_TCP_MENU #include "Audacity.h" @@ -842,7 +843,7 @@ void TrackPanel::BuildCommonDropMenuItems(wxMenu * menu) menu->AppendSeparator(); wxMenu *theMenu; -#ifdef EXPERIMENTAL_CASCADE_TCP_MENU +#ifdef EXPERIMENTAL_CASCADE_MOVE_MENU wxMenu *const moveMenu = new wxMenu(); menu->Append(0, _("&Move"), moveMenu); theMenu = moveMenu;