MCPcopy Create free account
hub / github.com/YACReader/yacreader / next

Method next

YACReader/viewer.cpp:297–312  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

295}
296
297void Viewer::next()
298{
299 if (!render->hasLoadedComic()) {
300 return;
301 }
302
303 direction = 1;
304 syncRenderToContinuousReadingProgress();
305 if (doublePage && render->currentPageIsDoublePage()) {
306 render->nextDoublePage();
307 } else {
308 render->nextPage();
309 }
310 updateInformation();
311 shouldOpenPrevious = false;
312}
313
314void Viewer::left()
315{

Callers

nothing calls this directly

Calls 4

hasLoadedComicMethod · 0.80
nextDoublePageMethod · 0.80
nextPageMethod · 0.45

Tested by

no test coverage detected