From ea52b268e39e67481eef883f2e3922b3dab68ae8 Mon Sep 17 00:00:00 2001 From: alexs75 Date: Sun, 10 Feb 2013 14:29:33 +0000 Subject: [PATCH] fix find in rxlockupcombo with press Spacebar git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2668 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- components/rx/rxpopupunit.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/rx/rxpopupunit.pas b/components/rx/rxpopupunit.pas index 999203c2b..319c3218f 100644 --- a/components/rx/rxpopupunit.pas +++ b/components/rx/rxpopupunit.pas @@ -902,7 +902,7 @@ end; procedure TPopUpGrid.UTF8KeyPress(var UTF8Key: TUTF8Char); begin inherited UTF8KeyPress(UTF8Key); - if UTF8Key>#32 then + if UTF8Key>=#32 then FindNextChar(UTF8Key) else if UTF8Key = #8 then