adjust cache to match strip layout

event keys updated

_get_bus_assignments added to util.py

patch bump
This commit is contained in:
2023-09-29 20:08:18 +01:00
parent 1c09556c61
commit c385476cc4
5 changed files with 39 additions and 43 deletions

View File

@@ -192,3 +192,7 @@ def get_slider_modes() -> Iterable:
"DENOISER MODE",
"LIMIT MODE",
)
def _get_bus_assignments(kind) -> list:
return [f"A{i}" for i in range(1, kind.phys_out + 1)] + [f"B{i}" for i in range(1, kind.virt_out + 1)]