mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
Fix POCSAG Pager UI bug
same as subghz and weather station bug with invisible element selected
This commit is contained in:
parent
ac400abede
commit
1243dad8fd
1 changed files with 1 additions and 1 deletions
|
@ -307,7 +307,7 @@ bool pcsg_view_receiver_input(InputEvent* event, void* context) {
|
|||
pcsg_receiver->view,
|
||||
PCSGReceiverModel * model,
|
||||
{
|
||||
if(model->idx != model->history_item - 1) model->idx++;
|
||||
if(model->history_item && model->idx != model->history_item - 1) model->idx++;
|
||||
},
|
||||
true);
|
||||
} else if(event->key == InputKeyLeft && event->type == InputTypeShort) {
|
||||
|
|
Loading…
Reference in a new issue