Don't stop video playback when undoing or redoing changes
This commit is contained in:
parent
4d15df51f5
commit
e995cd2616
1 changed files with 0 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue