Add APRS Receiving App

This commit is contained in:
East2West 2021-03-07 16:05:23 -06:00
parent de92faf67b
commit f15cf78101
No known key found for this signature in database
GPG key ID: 58418944D71A1EA6
18 changed files with 1722 additions and 16 deletions

View file

@ -179,6 +179,24 @@ public:
}
}
}
else if( event == ui::KeyEvent::Up ) {
if(selected_key == recent.front().key()){
return false;
}
else {
advance(-1);
return true;
}
}
else if( event == ui::KeyEvent::Down ) {
if( selected_key == recent.back().key()) {
return false;
}
else {
advance(1);
return true;
}
}
return false;
}
@ -264,7 +282,7 @@ public:
// TODO: What happens here shouldn't matter if I do proper damage detection!
}
void on_focus() override {
void focus() override {
_table.focus();
}