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(); } };