| 566 | } |
| 567 | |
| 568 | void CsvGrid::biggerFont() { |
| 569 | DEBUG_PRINTF("#### CsvGrid::biggerFont\n"); |
| 570 | if( text_font_size < TCRUNCHER_MAX_FONT_SIZE ) { |
| 571 | text_font_size += 2; |
| 572 | // TODO allow resizing heights for small tables |
| 573 | // row_height_all(text_font_size + TCRUNCHER_ROW_HEIGHT_ADD); |
| 574 | // col_header_height(text_font_size + TCRUNCHER_ROW_HEIGHT_ADD); |
| 575 | redraw(); |
| 576 | } |
| 577 | } |
| 578 | |
| 579 | void CsvGrid::smallerFont() { |
| 580 | DEBUG_PRINTF("#### CsvGrid::smallerFont\n"); |
no outgoing calls
no test coverage detected