mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:58:06 +02:00
LCL, fix problem in dbgrid accepting input chars even if editing field would not accept them
git-svn-id: trunk@28756 -
This commit is contained in:
parent
c622f827ef
commit
d5139c9bd5
@ -7168,7 +7168,10 @@ begin
|
||||
else begin
|
||||
AChar := Key;
|
||||
EditorCanProcessKey(AChar);
|
||||
Key := AChar[1];
|
||||
if AChar='' then
|
||||
Key := #0
|
||||
else
|
||||
Key := AChar[1];
|
||||
end;
|
||||
end;
|
||||
FEditorKey := False;
|
||||
|
Loading…
Reference in New Issue
Block a user