mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-01-17 22:55:38 +00:00
Fixed an issue where the game description would not scroll in the scraper GUI.
This commit is contained in:
parent
664a39df2c
commit
d6df68e310
|
@ -52,6 +52,8 @@ GuiScraperSearch::GuiScraperSearch(SearchType type, unsigned int scrapeCount)
|
|||
mRetrySearch = false;
|
||||
mRetryCount = 0;
|
||||
|
||||
mWindow->setAllowTextScrolling(true);
|
||||
|
||||
// Left spacer (empty component, needed for borders).
|
||||
mGrid.setEntry(std::make_shared<GuiComponent>(), glm::ivec2 {0, 0}, false, false,
|
||||
glm::ivec2 {1, 3}, GridFlags::BORDER_TOP | GridFlags::BORDER_BOTTOM);
|
||||
|
@ -168,6 +170,8 @@ GuiScraperSearch::~GuiScraperSearch()
|
|||
TextureResource::manualUnload(mLastSearch.game->getMiximagePath(), false);
|
||||
ViewController::getInstance()->onFileChanged(mLastSearch.game, true);
|
||||
}
|
||||
|
||||
mWindow->setAllowTextScrolling(false);
|
||||
}
|
||||
|
||||
void GuiScraperSearch::onSizeChanged()
|
||||
|
|
Loading…
Reference in a new issue