From 84fe092b0e2e287f49fe7d62cab5b288ecb504bd Mon Sep 17 00:00:00 2001 From: paul Date: Tue, 12 May 2009 02:51:25 +0000 Subject: [PATCH] designer: don't position new frame form at the default position (by request of Phil in issue #0013695) git-svn-id: trunk@19934 - --- designer/framedesigner.pas | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/designer/framedesigner.pas b/designer/framedesigner.pas index 99bc93ada5..8cdcba8ce3 100644 --- a/designer/framedesigner.pas +++ b/designer/framedesigner.pas @@ -57,7 +57,7 @@ implementation constructor TFrameDesignerForm.Create(AOwner: TComponent); begin - Position := poDefaultPosOnly; // let it be at default position since frame TopLeft is always (0,0) + Position := poDesigned; inherited Create(AOwner); // workaround problem with out assumption that Width = ClientWidth, Height = ClientHeight AutoScroll := False;