mirror of
https://github.com/YACReader/yacreader
synced 2025-07-21 06:24:39 -04:00
Se evita que se regenere la portada desde el di?logo de propiedas a no ser que sea necesario
This commit is contained in:
@ -831,7 +831,10 @@ void PropertiesDialog::loadNextCover()
|
||||
|
||||
showPreviousCoverPageButton->setEnabled(true);
|
||||
//busyIndicator->show();
|
||||
coverChanged = true;
|
||||
if(current+1 != *(comics.at(0).info.coverPage))
|
||||
coverChanged = true;
|
||||
else
|
||||
coverChanged = false;
|
||||
}
|
||||
}
|
||||
|
||||
@ -853,6 +856,9 @@ void PropertiesDialog::loadPreviousCover()
|
||||
|
||||
showNextCoverPageButton->setEnabled(true);
|
||||
//busyIndicator->show();
|
||||
coverChanged = true;
|
||||
if(current-1 != *(comics.at(0).info.coverPage))
|
||||
coverChanged = true;
|
||||
else
|
||||
coverChanged = false;
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user