FIX: Quick search an "Space" key

This commit is contained in:
Alexander Koblov 2009-01-30 21:11:51 +00:00
commit d7466fa33a

View file

@ -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