Browse Source

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

Skorpionm 3 năm trước cách đây
mục cha
commit
566e80abf6
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      applications/main/subghz/views/receiver.c

+ 2 - 1
applications/main/subghz/views/receiver.c

@@ -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) {