From d4811b7d34b45ff6b21b97f11da128b5572ec526 Mon Sep 17 00:00:00 2001
From: wei <kaede@kaededeMacBook-Air.local>
Date: 星期三, 03 三月 2021 16:03:03 +0800
Subject: [PATCH] 20210303-1

---
 HDL_ON/UI/UI2/3-Intelligence/Scene/SceneAddPage.cs |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/HDL_ON/UI/UI2/3-Intelligence/Scene/SceneAddPage.cs b/HDL_ON/UI/UI2/3-Intelligence/Scene/SceneAddPage.cs
index 06c8951..7ccf347 100644
--- a/HDL_ON/UI/UI2/3-Intelligence/Scene/SceneAddPage.cs
+++ b/HDL_ON/UI/UI2/3-Intelligence/Scene/SceneAddPage.cs
@@ -276,7 +276,12 @@
                         scene.delay = obj;
                         btnSceneDelayInfo.Text = FunctionList.List.GetDelayText(obj);
                     };
-                    new PublicAssmebly().SetSceneDelayDialog(action ,scene.delay);
+                    Dictionary<string, string> items = new Dictionary<string, string>();
+                    items.Add("30", "30s");
+                    items.Add("60", "1min");
+                    items.Add("120", "2min");
+                    items.Add("300", "5min");
+                    new PublicAssmebly().SetSceneDelayDialog(items, action ,scene.delay);
                 };
 
                 contentView.AddChidren(new Button()
@@ -836,6 +841,7 @@
                         {
                             if (result == StateCode.SUCCESS)
                             {
+                                scene = serverScene;
                                 FunctionList.List.scenes.Add(scene);
                                 backAction();
                                 RemoveFromParent();

--
Gitblit v1.8.0