From e995cd26165367e043c78216b7b9c4efd6047878 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 1 Sep 2012 21:25:10 -0700 Subject: [PATCH] Don't stop video playback when undoing or redoing changes --- aegisub/src/command/edit.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/aegisub/src/command/edit.cpp b/aegisub/src/command/edit.cpp index ba8117805..4c7c9ab56 100644 --- a/aegisub/src/command/edit.cpp +++ b/aegisub/src/command/edit.cpp @@ -397,7 +397,6 @@ struct edit_redo : public Command { } void operator()(agi::Context *c) { - c->videoController->Stop(); c->ass->Redo(); } }; @@ -424,7 +423,6 @@ struct edit_undo : public Command { } void operator()(agi::Context *c) { - c->videoController->Stop(); c->ass->Undo(); } };