1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

fix(core) Fix auto-mover hitting wall scenario

This commit is contained in:
Lukas Bielesch 2024-08-27 15:05:44 +02:00
parent a1ab50017d
commit caa5ed22e0

View File

@ -557,6 +557,15 @@ where
&self.choices
}
/// Check possibility of going left/right.
fn can_move(&self, button: ButtonPos) -> bool {
match button {
ButtonPos::Left => self.has_previous_choice() || self.is_carousel,
ButtonPos::Right => self.has_next_choice() || self.is_carousel,
_ => false,
}
}
/// Go to the choice visually on the left.
fn move_left(&mut self, ctx: &mut EventCtx) {
if self.has_previous_choice() {
@ -641,11 +650,15 @@ where
// Possible automatic movement when user is holding left or right button.
if let Some(auto_move_direction) = self.holding_mover.event(ctx, event) {
if self.can_move(auto_move_direction) {
match auto_move_direction {
ButtonPos::Left => self.move_left(ctx),
ButtonPos::Right => self.move_right(ctx),
_ => {}
}
} else {
self.holding_mover.stop_moving();
}
return None;
}
@ -667,8 +680,8 @@ where
}
}
} else if let Some(ButtonControllerMsg::Pressed(pos)) = button_event {
// Starting the movement when left/right button is pressed.
if matches!(pos, ButtonPos::Left | ButtonPos::Right) {
// Starting the movement when required movement can be done.
if self.can_move(pos) {
self.holding_mover.start_moving(ctx, pos);
}
}