Added menu validation for fade entry

CQTexperiment
areff 2008-02-23 22:55:21 +00:00
parent d2e95a50f8
commit 761f86cf9c
1 changed files with 3 additions and 0 deletions

View File

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