allow interrupting replay

This commit is contained in:
2025-01-16 12:42:24 -06:00
parent 2d824e869e
commit 62313e5bd6
8 changed files with 27 additions and 5 deletions

View File

@@ -863,6 +863,10 @@ void handle_events() {
while(!All_Done) {
if(replaying && has_next_action()){
if(check_for_interrupt("confirm-interrupt-replay")){
replaying = false;
continue;
}
replay_next_action();
}else{
#ifdef __APPLE__