improved todolist dlg resizing from Graeme Geldenhuys

git-svn-id: trunk@8192 -
This commit is contained in:
mattias 2005-11-19 10:52:32 +00:00
parent a46f0b8461
commit 0dfb96f59d

View File

@ -340,14 +340,15 @@ begin
lvTodo:=TListView.Create(Self);
with lvTodo do
begin
parent:=self;
Left := 0;
Top := 22;
Width := 469;
Height := 237;
Align := alClient;
ViewStyle:=vsReport;
lvToDo.OnDblClick:=@actEditGoto;
parent := self;
Left := 0;
Top := 22;
Width := 469;
Height := 237;
Align := alClient;
RowSelect := True;
ViewStyle := vsReport;
lvToDo.OnDblClick := @actEditGoto;
//priority column
C:=Columns.Add;
C.Caption := ' !';