From 1b089795f1bdd5651097791345d16a910325ac28 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Mon, 1 Oct 2012 10:28:04 -0700 Subject: [PATCH] Also stop the video when stopping audio playback as 2.1.9 did. Closes #1515. --- aegisub/src/command/audio.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/aegisub/src/command/audio.cpp b/aegisub/src/command/audio.cpp index 3c7fb72ab..d7b406208 100644 --- a/aegisub/src/command/audio.cpp +++ b/aegisub/src/command/audio.cpp @@ -285,6 +285,7 @@ struct audio_stop : public Command { void operator()(agi::Context *c) { c->audioController->Stop(); + c->videoController->Stop(); } };