| 40 | } |
| 41 | |
| 42 | void ScrollableTextArea::scrollUp() { |
| 43 | if (firstVisibleLine) { |
| 44 | firstVisibleLine--; |
| 45 | _redraw = true; |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | void ScrollableTextArea::scrollDown() { |
| 50 | if (firstVisibleLine + _maxVisibleLines <= linesBuffer.size()) { |
no outgoing calls
no test coverage detected