Explorar el Código

Nested先于父节点报错修改

zhenglijun hace 1 semana
padre
commit
2e3ce1f456
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      Assets/Scripts/Framework/Runtime/UI/View/Impl/UIView.cs

+ 1 - 1
Assets/Scripts/Framework/Runtime/UI/View/Impl/UIView.cs

@@ -32,8 +32,8 @@ namespace XGame.Framework.UI
             if (Active) return;
             Active = true;
             _panel.SetActive(true);
-            _ctrlGroup.Enable(intent);
             (_viewModel as IUIVMInternal).EnableChildren(intent);
+            _ctrlGroup.Enable(intent);
         }
         void IUIView.Disable()
         {