MCPcopy Create free account
hub / github.com/BruceDevices/firmware / scrollUp

Method scrollUp

src/core/scrollableTextArea.cpp:42–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 4

mainFunction · 0.80
updateAreaFunction · 0.80
ntagEmulationModeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected