Commit bf88661a authored by nanahira's avatar nanahira

password list should always be enabled

parent a2d62db0
......@@ -36,6 +36,7 @@ public class SelectServer : WindowServantSP
UIHelper.registEvent(gameObject, "server", pickServer);
UIHelper.getByName<UIInput>(gameObject, "name_").value = Config.Get("name", "YGOPro2 User");
list = UIHelper.getByName<UIPopupList>(gameObject, "history_");
list.enabled = true;
UIHelper.registEvent(gameObject, "history_", onSelected);
name = Config.Get("name", "YGOPro2 User");
inputIP = UIHelper.getByName<UIInput>(gameObject, "ip_");
......@@ -176,11 +177,11 @@ public class SelectServer : WindowServantSP
Config.Set("serversPicker", "[Custom]");
}
list.enabled = true;
inputIP_.enabled = true;
inputPort_.enabled = true;
break;
}
list.enabled = true;
inputIP_.enabled = true;
inputPort_.enabled = true;
break;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment