Don't stop video playback when undoing or redoing changes

This commit is contained in:
Thomas Goyne 2012-09-01 21:25:10 -07:00
parent 4d15df51f5
commit e995cd2616
1 changed files with 0 additions and 2 deletions

View File

@ -397,7 +397,6 @@ struct edit_redo : public Command {
} }
void operator()(agi::Context *c) { void operator()(agi::Context *c) {
c->videoController->Stop();
c->ass->Redo(); c->ass->Redo();
} }
}; };
@ -424,7 +423,6 @@ struct edit_undo : public Command {
} }
void operator()(agi::Context *c) { void operator()(agi::Context *c) {
c->videoController->Stop();
c->ass->Undo(); c->ass->Undo();
} }
}; };