mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-10 23:01:50 +00:00
- fixed: The on-screen keyboard did not properly delete the last character of the input string.
This commit is contained in:
parent
3fd449378c
commit
8919a991a7
1 changed files with 2 additions and 2 deletions
|
@ -264,7 +264,7 @@ class TextEnterMenu : Menu
|
|||
case MKEY_Clear:
|
||||
if (mEnterString.Length() > 0)
|
||||
{
|
||||
mEnterString.Truncate(mEnterString.Length() - 1);
|
||||
mEnterString.DeleteLastCharacter();
|
||||
}
|
||||
return true;
|
||||
|
||||
|
@ -297,7 +297,7 @@ class TextEnterMenu : Menu
|
|||
return true;
|
||||
|
||||
default:
|
||||
break; // Keep GCC quiet
|
||||
break;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
|
|
Loading…
Reference in a new issue