(self, text, color, subtext=None, subcolor=None)
| 299 | return None |
| 300 | |
| 301 | def _show_message(self, text, color, subtext=None, subcolor=None): |
| 302 | self.gfx.clear(Pager.BLACK) |
| 303 | self.gfx.draw_ttf_centered(80, text, color, FONT_DEJAVU, TTF_LARGE) |
| 304 | if subtext and subcolor: |
| 305 | self.gfx.draw_ttf_centered(115, subtext, subcolor, FONT_DEJAVU, TTF_SMALL) |
| 306 | self.gfx.flip() |
| 307 | |
| 308 | def _show_clear_data_menu(self): |
| 309 | selected = 0 |
no test coverage detected