You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ctrl+C, Ctrl+V, Ctrl+X etc. all work as expected, but Ctrl+A does not?
I seem to run into this issue surprisingly often.
Can be worked around with an OnKeyDown listener - not sure that's an appropriate fix though, doesn't address why it's not working in the first place. It should be native behavior form the underlying control right? Something is interfering with that?
procedure TGUIVCLTestRunner.edtFilterKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
begin
if (Shift = [ssCtrl]) and (Key = vkA) then
edtFilter.SelectAll;
end;
I use D10.4UP2, if that's relevant, and this is with latest Commit d9dca12 2024-07-29
The text was updated successfully, but these errors were encountered:
I'll take a look at this. I don't remember any reason it would be by design. Sometimes another shortcut property gets set by accident and takes precedence...
Ctrl+C, Ctrl+V, Ctrl+X etc. all work as expected, but Ctrl+A does not?
I seem to run into this issue surprisingly often.
Can be worked around with an OnKeyDown listener - not sure that's an appropriate fix though, doesn't address why it's not working in the first place. It should be native behavior form the underlying control right? Something is interfering with that?
I use D10.4UP2, if that's relevant, and this is with latest Commit d9dca12 2024-07-29
The text was updated successfully, but these errors were encountered: