mirror of
https://github.com/YACReader/yacreader
synced 2025-07-18 21:14:33 -04:00
Add setting to disable the continue reading banner in the grid view
This commit is contained in:
@ -446,7 +446,8 @@ void GridComicsView::setCurrentComicIfNeeded()
|
||||
|
||||
bool showCurrentComic = found &&
|
||||
filterEnabled == false &&
|
||||
(mode == ComicModel::Mode::Folder || mode == ComicModel::Mode::ReadingList);
|
||||
(mode == ComicModel::Mode::Folder || mode == ComicModel::Mode::ReadingList) &&
|
||||
settings->value(DISPLAY_CONTINUE_READING_IN_GRID_VIEW, true).toBool();
|
||||
|
||||
if (showCurrentComic) {
|
||||
ctxt->setContextProperty("currentComic", ¤tComic);
|
||||
|
Reference in New Issue
Block a user