mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
FIX: Quick search an "Space" key
This commit is contained in:
parent
07e2bb2912
commit
d7466fa33a
1 changed files with 1 additions and 1 deletions
|
|
@ -674,7 +674,7 @@ procedure TfrmMain.FormUTF8KeyPress(Sender: TObject; var UTF8Key: TUTF8Char);
|
|||
begin
|
||||
if edtCommand.Focused then Exit;
|
||||
// quick search by Letter only
|
||||
if (Length(UTF8Key) = 1) and ((Ord(UTF8Key[1]) < 32) or
|
||||
if (Length(UTF8Key) = 1) and ((Ord(UTF8Key[1]) <= 32) or
|
||||
(UTF8Key[1] in ['+','-','*','/','\'])) then Exit;
|
||||
if gQuickSearch and (GetKeyShiftState = gQuickSearchMode) then
|
||||
begin
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue