Parcourir la source

* Correct callback handler for object tree

Michaël Van Canneyt il y a 1 an
Parent
commit
d0b03c9c71
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      packages/wasm-oi/src/wasm.debuginspector.rtti.pas

+ 1 - 1
packages/wasm-oi/src/wasm.debuginspector.rtti.pas

@@ -214,7 +214,7 @@ class constructor TWasmDebugInspector.init;
 begin
   _List:=TInspectorList.Create;
   OnGetObjectProperties:=@_List.HandleObjectPropertiesEvent;
-  OnGetObjectTree:=@_List.HandleObjectPropertiesEvent;
+  OnGetObjectTree:=@_List.HandleObjectTreeEvent;
 end;
 
 constructor TWasmDebugInspector.Create(aOwner: TComponent);