| 2935 | |
| 2936 | |
| 2937 | void CsvApplication::setFont(std::string font) { |
| 2938 | this->gridFont = font; |
| 2939 | // Store theme settings |
| 2940 | preferences.set(TCRUNCHER_PREF_GRID_TEXT_FONT, this->gridFont.c_str()); |
| 2941 | Fl::redraw(); |
| 2942 | // Style all openend data windows |
| 2943 | // for( int slot = 0; slot < TCRUNCHER_MAX_WINDOWS; ++slot) { |
| 2944 | // windows[slot].applyTheme(); |
| 2945 | // } |
| 2946 | } |
| 2947 | |
| 2948 | std::string CsvApplication::getFont() { |
| 2949 | return gridFont; |
no test coverage detected