| 577 | } |
| 578 | |
| 579 | void CsvGrid::smallerFont() { |
| 580 | DEBUG_PRINTF("#### CsvGrid::smallerFont\n"); |
| 581 | if( text_font_size > TCRUNCHER_MIN_FONT_SIZE ) { |
| 582 | text_font_size -= 2; |
| 583 | // TODO allow resizing heights for small tables |
| 584 | // row_height_all(text_font_size + TCRUNCHER_ROW_HEIGHT_ADD); |
| 585 | // col_header_height(text_font_size + TCRUNCHER_ROW_HEIGHT_ADD); |
| 586 | redraw(); |
| 587 | } |
| 588 | } |
| 589 | |
| 590 | void CsvGrid::defaultFont() { |
| 591 | DEBUG_PRINTF("#### CsvGrid::defaultFont\n"); |
no outgoing calls
no test coverage detected