From 66b51e8577d7a76ea9b29986d55c1db09bc9540c Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 8 Aug 2017 05:38:11 +0200 Subject: [PATCH] fix #177 - prop type not selected when typing for a DUB prop --- src/ce_dubprojeditor.pas | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ce_dubprojeditor.pas b/src/ce_dubprojeditor.pas index 3792c535..c40b5389 100644 --- a/src/ce_dubprojeditor.pas +++ b/src/ce_dubprojeditor.pas @@ -170,6 +170,7 @@ begin fEdName.Items.Add(proposals[i].name); fEdName.AutoComplete := true; fEdName.OnChange := @setSelFromProposal; + fEdName.OnSelect:= @setSelFromProposal; // fBtnValidate := TBitBtn.Create(self); fBtnValidate.Parent := layout;