--- oup/current/Tools/MetaEditor.pas 2007/06/29 12:38:24 233 +++ oup/current/Tools/MetaEditor.pas 2007/07/14 14:18:23 237 @@ -87,7 +87,8 @@ begin //VST VST.Clear; VST.BeginUpdate; - root := ConManager.Connection[FConnectionID].MetaData.Root; +// root := ConManager.Connection[FConnectionID].MetaData.Root; + root := ConManager.Connection[FConnectionID].MetaData.FileById[454]; for i := 0 to root.ChildCount - 1 do begin data.Field := root.Child[i]; @@ -110,9 +111,6 @@ var begin data := Sender.GetNodeData(node); Meta := ConManager.Connection[ConnectionID].MetaData; - if data.Field is TExtension then - if TExtension(data.Field).ChildCount = 0 then - TExtension(data.Field).InitList; if data.Field.ChildCount > 0 then begin @@ -204,6 +202,11 @@ begin if Data.Field is TFile then CellText := IntToStr(TFile(Data.Field).FileInfo.ID); end; + 3: + begin + if Data.Field is TDataField then + CellText := TDataField(Data.Field).ValueAsString; + end; end; end; end;