JLChen
2020-12-22 01c46e7bfe9aa8fb20b29f70c83c03a307af548a
HDL_ON/UI/UI2/3-Intelligence/Scene/SceneEditPage.cs
@@ -410,8 +410,15 @@
        {
            functionListView.RemoveAll();
            functionListView.Height = Application.GetRealWidth(65 * scene.functions.Count);
            foreach (var scenefunction in scene.functions)
            for(int i =0;i<scene.functions.Count;)
            {
                var scenefunction = scene.functions[i];
                if (scenefunction.localFunction == null)
                {
                    scene.functions.Remove(scenefunction);
                    continue;
                }
                i++;
                var row = new RowLayout()
                {
                    Height = Application.GetRealWidth(65),