mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 12:18:09 +02:00
LCL: fix TStringGrid OnKeyPress triggers twice at goEditing. Issue #41503
This commit is contained in:
parent
f29a74fde8
commit
4d4d4060a3
@ -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 }
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user