Skip to content

Commit

Permalink
Renameed output_busses to buses, so that qt_client_py works with the …
Browse files Browse the repository at this point in the history
…latest elkpy.
  • Loading branch information
IliasBergstrom committed Oct 5, 2022
1 parent 1a2eb87 commit 546cb28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion qt_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ def _create_common_controls(self, track_info):
pan_gain_layout.addWidget(self._pan_gain[0], 0, Qt.AlignLeft)

# Create 1 pan/gain control per extra output bus
for bus in range(1, track_info.output_busses):
for bus in range(1, track_info.buses):
gain_id = self._controller.parameters.get_parameter_id(track_info.id, 'gain_sub_' + str(bus))
pan_id = self._controller.parameters.get_parameter_id(track_info.id, 'pan_sub_' + str(bus))
pan_gain = PanGainWidget(self._id, 'Sub Bus ' + str(bus), gain_id, pan_id, self._controller, self)
Expand Down

0 comments on commit 546cb28

Please sign in to comment.