| 143 | } |
| 144 | |
| 145 | void View::updateScanning() { |
| 146 | if (state->getRadioState() == bluetooth::RadioState::On && state->isScanning()) { |
| 147 | lv_obj_remove_flag(scanning_spinner, LV_OBJ_FLAG_HIDDEN); |
| 148 | } else { |
| 149 | lv_obj_add_flag(scanning_spinner, LV_OBJ_FLAG_HIDDEN); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | void View::updatePeerList() { |
| 154 | lv_obj_clean(peers_list); |
nothing calls this directly
no test coverage detected