mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-16 20:15: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)
|
void GuiTextEditKeyboardPopup::update(int deltaTime)
|
||||||
{
|
{
|
||||||
|
if (mText->isEditing())
|
||||||
|
mNavigationRepeatDirX = 0;
|
||||||
|
|
||||||
updateNavigationRepeat(deltaTime);
|
updateNavigationRepeat(deltaTime);
|
||||||
updateDeleteRepeat(deltaTime);
|
updateDeleteRepeat(deltaTime);
|
||||||
GuiComponent::update(deltaTime);
|
GuiComponent::update(deltaTime);
|
||||||
|
|
Loading…
Reference in a new issue