mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-21 03:21:24 +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
|
else begin
|
||||||
AChar := Key;
|
AChar := Key;
|
||||||
EditorCanProcessKey(AChar);
|
EditorCanProcessKey(AChar);
|
||||||
Key := AChar[1];
|
if AChar='' then
|
||||||
|
Key := #0
|
||||||
|
else
|
||||||
|
Key := AChar[1];
|
||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
FEditorKey := False;
|
FEditorKey := False;
|
||||||
|
Loading…
Reference in New Issue
Block a user