TODO: get the search configuration for exact match or not
| 636 | |
| 637 | // TODO: get the search configuration for exact match or not |
| 638 | void ComicVineDialog::launchSearchComic() |
| 639 | { |
| 640 | showLoading(tr("Looking for comic...")); |
| 641 | |
| 642 | QString volumeInfo = searchSingleComicWidget->getVolumeInfo(); |
| 643 | bool exactMatch = searchSingleComicWidget->getExactMatch(); |
| 644 | // QString comicInfo = searchSingleComicWidget->getComicInfo(); |
| 645 | // int comicNumber = searchSingleComicWidget->getComicNumber(); |
| 646 | |
| 647 | // if(comicInfo.isEmpty() && comicNumber == -1) |
| 648 | searchVolume({ volumeInfo, 1, exactMatch }); |
| 649 | } |
| 650 | |
| 651 | void ComicVineDialog::applyTheme(const Theme &theme) |
| 652 | { |
nothing calls this directly
no test coverage detected