From 761f86cf9c7f60bdd8a049aa61e93fd3d5e19f97 Mon Sep 17 00:00:00 2001 From: areff Date: Sat, 23 Feb 2008 22:55:21 +0000 Subject: [PATCH] Added menu validation for fade entry --- Application/PlaybackController.m | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Application/PlaybackController.m b/Application/PlaybackController.m index 1b8ccacca..d35a4d49b 100644 --- a/Application/PlaybackController.m +++ b/Application/PlaybackController.m @@ -584,6 +584,9 @@ if (action == @selector(stop:) && (playbackStatus == kCogStatusStopped)) return NO; + if (action == @selector(fade:) && (playbackStatus == kCogStatusStopped)) + return NO; + return YES; }