aboutsummaryrefslogtreecommitdiffstats
path: root/unicode
diff options
context:
space:
mode:
Diffstat (limited to 'unicode')
-rw-r--r--unicode/src/menu/UMenuText.pas10
1 files changed, 1 insertions, 9 deletions
diff --git a/unicode/src/menu/UMenuText.pas b/unicode/src/menu/UMenuText.pas
index d3bd213e..276f961b 100644
--- a/unicode/src/menu/UMenuText.pas
+++ b/unicode/src/menu/UMenuText.pas
@@ -246,16 +246,8 @@ begin
end;
procedure TText.DeleteLastLetter;
-var
- Str: UCS4String;
- Len: integer;
begin
- Str := UTF8ToUCS4String(TextString);
- Len := Length(Str);
- if (Len > 0) then
- SetLength(Str, Len-1);
-
- SetText(UCS4ToUTF8String(Str));
+ SetText(UTF8Copy(TextString, 1, LengthUTF8(TextString)-1));
end;
procedure TText.Draw;