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:
gullradriel 2023-11-18 22:32:52 +01:00 committed by GitHub
parent 8655027a5b
commit 650aacfaa7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 4 deletions

View file

@ -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>();
};