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

View File

@ -42,7 +42,7 @@ Publicado bajo licencia <a href="http://www.gnu.org/copyleft/gpl.html">GPL v3</a
<h1>Donaciones</h1>
<p>YACReader es gratis y open source</p>
<p>
Si te gusta YACReader, por favor, considera realizar una donación <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5TAMNQCDDMVP8&lc=ES&item_name=YACReader&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted"> Donate! </a>
Si te gusta YACReader, por favor, considera realizar una donación <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=5TAMNQCDDMVP8&lc=ES&item_name=YACReader&currency_code=EUR&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted"> ¡Dona! </a>
</p>