desktop: Don't swallow Escape key (fix #6135)

This commit is contained in:
Mike Welsh 2022-01-24 23:50:45 -08:00
parent f23c03129a
commit d5986a7294
1 changed files with 3 additions and 6 deletions

View File

@ -375,12 +375,9 @@ impl App {
..
},
..
} => {
player.lock().unwrap().update(|uc| {
uc.stage.set_display_state(uc, StageDisplayState::Normal);
});
return;
}
} => player.lock().unwrap().update(|uc| {
uc.stage.set_display_state(uc, StageDisplayState::Normal);
}),
_ => (),
},
_ => (),