LCL: fix TStringGrid OnKeyPress triggers twice at goEditing. Issue #41503

This commit is contained in:
Jesus Reyes A. 2025-03-27 18:20:42 -06:00
parent f29a74fde8
commit 4d4d4060a3
2 changed files with 7 additions and 1 deletions

View File

@ -7847,7 +7847,12 @@ begin
end;
procedure TCustomGrid.KeyPress(var Key: char);
const
keypressBusy:boolean=false;
begin
if keypressbusy then
exit;
keypressBusy := true;
inherited KeyPress(Key);
if not EditorKey then
// we are interested in these keys only if they came from the grid
@ -7862,6 +7867,7 @@ begin
Key := #0;
end;
end;
keypressBusy := false;
end;
{ Convert a physical Mouse coordinate into a physical cell coordinate }

View File

@ -80,7 +80,7 @@ begin
if S='' then WChar := WPARAM(Ord('?'))
else WChar := WPARAM(S[1]);
end;
PostMessageW(AEditor.Handle, WM_CHAR, WChar, 0);
SendMessageW(AEditor.Handle, WM_CHAR, WChar, 0);
end;
end.