From a51b2a96e28b5dfbbeace855b03d0c6867612929 Mon Sep 17 00:00:00 2001 From: vincents Date: Fri, 17 Nov 2006 14:38:48 +0000 Subject: [PATCH] use EnsureVisible to show collection property editor (bug #7398) git-svn-id: trunk@10215 - --- ideintf/propedits.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ideintf/propedits.pp b/ideintf/propedits.pp index b7e7778cc4..3546c3930a 100644 --- a/ideintf/propedits.pp +++ b/ideintf/propedits.pp @@ -3663,7 +3663,7 @@ begin If CollectionForm=nil then CollectionForm := TCollectionPropertyEditorForm.Create(Application); CollectionForm.SetCollection(TheCollection,GetComponent(0),GetName); - CollectionForm.Show; + CollectionForm.EnsureVisible; end; { TClassPropertyEditor }