mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-15 14:29:31 +02:00
CharacterMap: show ANSI symbol code in more language neutral and compact form
This commit is contained in:
parent
a65bcf5d15
commit
8e9a050ab6
@ -335,7 +335,7 @@ var
|
||||
N: integer;
|
||||
begin
|
||||
N := ACol-1 + (ARow-1)*16 + 32;
|
||||
AnsiCharInfoLabel.Caption := Format('Decimal: %s, Hex: $%s', [IntToStr(N), IntToHex(N, 2)]);
|
||||
AnsiCharInfoLabel.Caption := Format('%s / $%s', [IntToStr(N), IntToHex(N, 2)]);
|
||||
end;
|
||||
|
||||
procedure TCharacterMapForm.AnsiGridMouseMove(Sender: TObject;
|
||||
|
Loading…
Reference in New Issue
Block a user