mirror of
https://github.com/cookiengineer/audacity
synced 2025-10-21 22:12:58 +02:00
Disable scrubbing when pause button is down.
This commit is contained in:
@@ -1053,6 +1053,10 @@ void CommandManager::TellUserWhyDisallowed( CommandFlag flagsGot, CommandMask fl
|
||||
reason = _("You must first select some audio for this to use.");
|
||||
else if( missingFlags & WaveTracksSelectedFlag)
|
||||
reason = _("You must first select some audio for this\n to use. (Selecting other kinds of track won't work.)");
|
||||
else if( missingFlags & AudioStreamNotScrubbingFlag )
|
||||
reason = _("Scrubbing may not be active.");
|
||||
else if( missingFlags & AudioIONotBusyFlag )
|
||||
reason = _("Playback may not be paused.");
|
||||
// If the only thing wrong was no tracks, we do nothing and don't report a problem
|
||||
else if( missingFlags == TracksExistFlag )
|
||||
return;
|
||||
|
Reference in New Issue
Block a user