mirror of
https://github.com/YACReader/yacreader
synced 2025-05-28 03:10:27 -04:00
Add new ScraperStatus for exact volume searches
This commit is contained in:
parent
1b4116db1a
commit
fca1e2004e
@ -202,6 +202,7 @@ void ComicVineDialog::goBack()
|
||||
case ScraperStatus::AskingForInfo:
|
||||
case ScraperStatus::SearchingSingleComic:
|
||||
case ScraperStatus::SearchingVolume:
|
||||
case ScraperStatus::SearchingExactVolume:
|
||||
case ScraperStatus::GettingVolumeComics:
|
||||
if (mode == ScraperMode::Volume)
|
||||
showSearchVolume();
|
||||
@ -434,6 +435,7 @@ void ComicVineDialog::queryTimeOut()
|
||||
showSearchSingleComic();
|
||||
break;
|
||||
case ScraperStatus::SearchingVolume:
|
||||
case ScraperStatus::SearchingExactVolume:
|
||||
if (mode == ScraperMode::Volume)
|
||||
showSearchVolume();
|
||||
else
|
||||
|
@ -73,12 +73,13 @@ private:
|
||||
};
|
||||
|
||||
enum class ScraperStatus {
|
||||
AutoSearching,
|
||||
AskingForInfo,
|
||||
AutoSearching, // Searching for volumes maching a single comic
|
||||
AskingForInfo, // The dialog is showing some UI to ask the user for some info
|
||||
SelectingComic,
|
||||
SelectingSeries,
|
||||
SearchingSingleComic,
|
||||
SearchingVolume,
|
||||
SearchingExactVolume,
|
||||
SortingComics,
|
||||
GettingVolumeComics
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user