reduces the bus mode list for basic kind

This commit is contained in:
onyx-and-iris 2023-09-06 19:18:31 +01:00
parent 790ac10d4a
commit 77dfd00541

View File

@ -94,7 +94,14 @@ def get_channel_identifier_list(vm) -> list:
return identifiers
def get_bus_modes() -> list:
def get_bus_modes(vm) -> list:
if vm.kind.name == "basic":
return [
"normal",
"amix",
"repeat",
"composite",
]
return [
"normal",
"amix",