Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Update jacklib
Signed-off-by: falkTX <falktx@falktx.com>
  • Loading branch information
falkTX committed Aug 5, 2020
1 parent c69a331 commit d163673
Show file tree
Hide file tree
Showing 6 changed files with 1,973 additions and 1,315 deletions.
7 changes: 4 additions & 3 deletions src/catia.py
Expand Up @@ -590,10 +590,11 @@ def initJackPorts(self):
if jacklib.port_flags(portPtr) & jacklib.JackPortIsInput:
continue

portConnectionNames = c_char_p_p_to_list(jacklib.port_get_all_connections(gJack.client, portPtr))
portConnectionNames = tuple(jacklib.port_get_all_connections(gJack.client, portPtr))

for portConName in portConnectionNames:
self.canvas_connectPortsByName(portName, portConName)
if portConnectionNames:
for portConName in portConnectionNames:
self.canvas_connectPortsByName(portName, portConName)

def initAlsaPorts(self):
if not (haveALSA and self.ui.act_settings_show_alsa.isChecked()):
Expand Down

0 comments on commit d163673

Please sign in to comment.