lpcmanager

5cad6b61512d
Parents 3209e03c1607
Children 28eb9dbc5323
No longer shows stop if controller is empty.
--- a/LPCManager.py Thu Jul 27 08:13:59 2017 +0200
+++ b/LPCManager.py Mon Jul 31 07:42:17 2017 +0200
@@ -1408,9 +1408,14 @@
("_Transfer", True)],
"Disconnected": [("_Simulate", "not simulating"),
("_Run", False),
- ("_Stop", True if arch in PLC_module else "simulating"),
+ ("_Stop", False if arch in PLC_module else "simulating"),
("_Build", True),
("_Transfer", False)],
+ "Empty" :[("_Simulate", "not simulating"),
+ ("_Run", False),
+ ("_Stop", False),
+ ("_Build", True),
+ ("_Transfer", True)],
}
if arch in PLC_module: