mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 14:15:38 +00:00
Fixed an issue where the Grid view style would continue to scroll indefinitely.
This commit is contained in:
parent
bdce6825dc
commit
42c95019be
|
@ -41,6 +41,13 @@ public:
|
|||
virtual std::vector<HelpPrompt> getHelpPrompts() override;
|
||||
virtual void launch(FileData* game) override;
|
||||
|
||||
virtual bool isListScrolling() override { return mGrid.isScrolling(); };
|
||||
virtual void stopListScrolling() override
|
||||
{
|
||||
mGrid.stopAllAnimations();
|
||||
mGrid.stopScrolling();
|
||||
};
|
||||
|
||||
virtual const std::vector<std::string>& getFirstLetterIndex() override
|
||||
{ return mFirstLetterIndex; };
|
||||
|
||||
|
|
Loading…
Reference in a new issue