Browse Source

filter out loopback devices

pull/93/head
Evgeniy (enepomnyashchiy) Nepomniashchiy 10 years ago
parent
commit
380eab5d78
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/jacksettings.py

+ 1
- 1
src/jacksettings.py View File

@@ -710,7 +710,7 @@ class JackSettingsW(QDialog):
if stream_type != '*':
stream = value

if stream_type == stream:
if (stream_type == stream) and (name != 'Loopback'):
alsaDeviceList.append( "hw:%s,%s [%s]" % (card, device, name) )

return alsaDeviceList


Loading…
Cancel
Save