MCPcopy Create free account
hub / github.com/Tablecruncher/tablecruncher / biggerFont

Method biggerFont

src/csvgrid.cpp:568–577  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

566}
567
568void 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
579void CsvGrid::smallerFont() {
580 DEBUG_PRINTF("#### CsvGrid::smallerFont\n");

Callers 2

csvwindow.cppFile · 0.80
changeFontSizeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected