[FL-3063] SubGhz: fix start navigation (#2183)

This commit is contained in:
Skorpionm
2022-12-23 12:31:14 +04:00
committed by GitHub
parent 7ff9414656
commit 566e80abf6

View File

@@ -309,7 +309,8 @@ bool subghz_view_receiver_input(InputEvent* event, void* context) {
subghz_receiver->view,
SubGhzViewReceiverModel * model,
{
if(model->idx != model->history_item - 1) model->idx++;
if((model->history_item != 0) && (model->idx != model->history_item - 1))
model->idx++;
},
true);
} else if(event->key == InputKeyLeft && event->type == InputTypeShort) {