-Custom Web View Examples Added

-UI Adjustment for small screens. Brew Steps are displayed above the
kettles.
-
This commit is contained in:
Manuel83
2017-09-27 20:13:36 +02:00
parent 813b2f0035
commit 547804be2b
25 changed files with 408 additions and 38 deletions
+3
View File
@@ -227,10 +227,13 @@ def execute_step(api):
step = cbpi.cache.get("active_step")
if step is not None:
step.execute()
if step.is_dirty():
state = {}
for field in step.managed_fields:
state[field] = step.__getattribute__(field)
Step.update_step_state(step.id, state)
step.reset_dirty()
cbpi.ws_emit("UPDATE_ALL_STEPS", Step.get_all())