mirror of
https://github.com/eried/portapack-mayhem.git
synced 2025-06-24 06:44:25 -04:00
BLE RX: added clear list button (#1593)
* added clear list button * Bigger buttons and text * Change case on labels --------- Co-authored-by: GullCode <gullradriel@hotmail.com>
This commit is contained in:
parent
8655027a5b
commit
650aacfaa7
2 changed files with 13 additions and 4 deletions
|
@ -420,6 +420,7 @@ BLERxView::BLERxView(NavigationView& nav)
|
|||
&options_sort,
|
||||
&button_filter,
|
||||
&button_save_list,
|
||||
&button_clear_list,
|
||||
&button_switch,
|
||||
&recent_entries_view});
|
||||
|
||||
|
@ -448,6 +449,10 @@ BLERxView::BLERxView(NavigationView& nav)
|
|||
});
|
||||
};
|
||||
|
||||
button_clear_list.on_select = [this](Button&) {
|
||||
recent.clear();
|
||||
};
|
||||
|
||||
button_switch.on_select = [&nav](Button&) {
|
||||
nav.replace<BLETxView>();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue