Se evita que se regenere la portada desde el di?logo de propiedas a no ser que sea necesario

This commit is contained in:
Luis Ángel San Martín
2013-06-22 14:51:49 +02:00
parent ea6261d7a2
commit 0210c3b831
2 changed files with 9 additions and 3 deletions

View File

@ -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;
}
}