1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-07-09 17:07:43 +02:00

Only push state if recording, not when monitoring

This commit is contained in:
lllucius 2014-12-29 20:26:07 +00:00
parent 055b40c3f2
commit 204aa37716

View File

@ -4724,6 +4724,9 @@ void AudacityProject::OnAudioIOStartRecording()
// This is called after recording has stopped and all tracks have flushed. // This is called after recording has stopped and all tracks have flushed.
void AudacityProject::OnAudioIOStopRecording() void AudacityProject::OnAudioIOStopRecording()
{
// Only push state if we were capturing and not monitoring
if (GetAudioIOToken() > 0)
{ {
// Add to history // Add to history
PushState(_("Recorded Audio"), _("Record")); PushState(_("Recorded Audio"), _("Record"));
@ -4734,6 +4737,7 @@ void AudacityProject::OnAudioIOStopRecording()
OnUndo(); OnUndo();
ResetTimerRecordFlag(); ResetTimerRecordFlag();
} }
}
// Refresh the project window // Refresh the project window
FixScrollbars(); FixScrollbars();