| 693 | } |
| 694 | |
| 695 | void PropertiesDialog::setComicsForSequentialEditing(int currentComicIndex, QList<ComicDB> comics) |
| 696 | { |
| 697 | sequentialEditing = true; |
| 698 | |
| 699 | updated = false; |
| 700 | coverChanged = false; |
| 701 | customCover = QImage(); |
| 702 | |
| 703 | this->comics = comics; |
| 704 | this->currentComicIndex = currentComicIndex; |
| 705 | |
| 706 | loadComic(comics[currentComicIndex]); |
| 707 | |
| 708 | updateButtons(); |
| 709 | } |
| 710 | |
| 711 | void PropertiesDialog::updateComics() |
| 712 | { |