mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fixed an issue where the first scraper result row was focused when it shouldn't.
This commit is contained in:
parent
775674a77f
commit
6e479dac74
|
@ -379,7 +379,6 @@ void GuiScraperSearch::onSearchDone(const std::vector<ScraperSearchResult>& resu
|
||||||
row.makeAcceptInputHandler(mSkipCallback);
|
row.makeAcceptInputHandler(mSkipCallback);
|
||||||
|
|
||||||
mResultList->addRow(row);
|
mResultList->addRow(row);
|
||||||
mGrid.resetCursor();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -395,7 +394,6 @@ void GuiScraperSearch::onSearchDone(const std::vector<ScraperSearchResult>& resu
|
||||||
row.makeAcceptInputHandler([this, i] { returnResult(mScraperResults.at(i)); });
|
row.makeAcceptInputHandler([this, i] { returnResult(mScraperResults.at(i)); });
|
||||||
mResultList->addRow(row);
|
mResultList->addRow(row);
|
||||||
}
|
}
|
||||||
mGrid.resetCursor();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mBlockAccept = false;
|
mBlockAccept = false;
|
||||||
|
|
Loading…
Reference in a new issue