diff --git a/aegisub/src/command/edit.cpp b/aegisub/src/command/edit.cpp index ba8117805925688df32c2330c7d8bc01ad6ae29b..4c7c9ab56707efbca11d74f6f2225771ca54651c 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(); } };