[FL-3063] SubGhz: fix start navigation (#2183)
This commit is contained in:
parent
7ff9414656
commit
566e80abf6
@ -309,7 +309,8 @@ bool subghz_view_receiver_input(InputEvent* event, void* context) {
|
|||||||
subghz_receiver->view,
|
subghz_receiver->view,
|
||||||
SubGhzViewReceiverModel * model,
|
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);
|
true);
|
||||||
} else if(event->key == InputKeyLeft && event->type == InputTypeShort) {
|
} else if(event->key == InputKeyLeft && event->type == InputTypeShort) {
|
||||||
|
Loading…
Reference in New Issue
Block a user