mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-22 06:05:38 +00:00
Fixed an issue where a virtual keyboard key repeat would sometimes continue to run when it shouldn't.
This commit is contained in:
parent
cfc9d54068
commit
c8cc7b7947
|
@ -470,6 +470,9 @@ bool GuiTextEditKeyboardPopup::input(InputConfig* config, Input input)
|
|||
|
||||
void GuiTextEditKeyboardPopup::update(int deltaTime)
|
||||
{
|
||||
if (mText->isEditing())
|
||||
mNavigationRepeatDirX = 0;
|
||||
|
||||
updateNavigationRepeat(deltaTime);
|
||||
updateDeleteRepeat(deltaTime);
|
||||
GuiComponent::update(deltaTime);
|
||||
|
|
Loading…
Reference in a new issue