| 126 | } |
| 127 | |
| 128 | void MainWindowViewer::applySavedReaderMode() |
| 129 | { |
| 130 | Configuration &config = Configuration::getConfiguration(); |
| 131 | const bool manga = config.getDoubleMangaPage(); |
| 132 | const bool continuousScroll = config.getContinuousScroll(); |
| 133 | viewer->setMangaWithoutStoringSetting(manga); |
| 134 | viewer->setContinuousScrollWithoutStoringSetting(continuousScroll); |
| 135 | syncModeActions(manga, continuousScroll); |
| 136 | } |
| 137 | |
| 138 | void MainWindowViewer::applyLibraryReaderMode(YACReader::FileType type) |
| 139 | { |
nothing calls this directly
no test coverage detected