Added menu validation for fade entry

This commit is contained in:
areff 2008-02-23 22:55:21 +00:00
parent d2e95a50f8
commit 761f86cf9c

View file

@ -584,6 +584,9 @@
if (action == @selector(stop:) && (playbackStatus == kCogStatusStopped))
return NO;
if (action == @selector(fade:) && (playbackStatus == kCogStatusStopped))
return NO;
return YES;
}