MCPcopy Create free account
hub / github.com/Quill-OS/quill / refreshScreen

Method refreshScreen

src/reader/reader.cpp:1112–1125  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1110}
1111
1112void reader::refreshScreen() {
1113 if(neverRefresh == true) {
1114 // Do nothing; "Never refresh" was set
1115 ;
1116 }
1117 else {
1118 if(pagesTurned >= pageRefreshSetting) {
1119 // Refreshing the screen
1120 this->repaint();
1121 // Reset count
1122 pagesTurned = 0;
1123 }
1124 }
1125}
1126
1127void reader::on_optionsBtn_clicked()
1128{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected