| 94 | } |
| 95 | |
| 96 | void ScrollableTextArea::fromFile(File file) { |
| 97 | linesBuffer.clear(); |
| 98 | while (file.available()) addLine(file.readStringUntil('\n')); |
| 99 | |
| 100 | draw(true); |
| 101 | delay(100); |
| 102 | draw(true); |
| 103 | } |
| 104 | |
| 105 | void ScrollableTextArea::clear() { |
| 106 | firstVisibleLine = 0; |
nothing calls this directly
no test coverage detected