Browse Source

Filetree: fix ci

lviguier 2 tháng trước cách đây
mục cha
commit
e1315659c5
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      hide/comp/SceneEditor.hx

+ 1 - 1
hide/comp/SceneEditor.hx

@@ -2058,7 +2058,7 @@ class SceneEditor {
 			getItemDropFlags: function(target: hrt.prefab.Prefab, dataTransfer: js.html.DataTransfer) : hide.comp.FancyTree.DropFlags {
 				for (p in movedPrefabs) {
 					if (checkAllowParent({prefabClass : Type.getClass(p), inf : p.getHideProps()}, target))
-						return Reorder | Reparent;
+						return (Reorder:hide.comp.FancyTree.DropFlags) | Reparent;
 				}
 				return Reorder;
 			},