This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Cadence
mirror of
https://github.com/falkTX/Cadence
Watch
1
Star
0
Fork
0
Code
Releases
3
Activity
Browse Source
filter out loopback devices
pull/93/head
Evgeniy (enepomnyashchiy) Nepomniashchiy
10 years ago
parent
3aa22badd0
commit
380eab5d78
1 changed files
with
1 additions
and
1 deletions
Unified View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/jacksettings.py
+ 1
- 1
src/jacksettings.py
View File
@@ -710,7 +710,7 @@ class JackSettingsW(QDialog):
if stream_type != '*':
if stream_type != '*':
stream = value
stream = value
if stream_type == stream:
if
(
stream_type == stream
) and (name != 'Loopback')
:
alsaDeviceList.append( "hw:%s,%s [%s]" % (card, device, name) )
alsaDeviceList.append( "hw:%s,%s [%s]" % (card, device, name) )
return alsaDeviceList
return alsaDeviceList
Write
Preview
Loading…
Cancel
Save