This website works better with JavaScript.
Home
Help
Sign In
jackaudio
/
jack2
mirror of
https://github.com/jackaudio/jack2
Watch
1
Star
0
Fork
0
Code
Releases
45
Activity
Browse Source
Fix jack_control handling of dbus bytes
Prior to this, `jack_control dps dither s` would return an error.
tags/v1.9.15
Joshua Rubin
Filipe Coelho
<falktx@falktx.com>
4 years ago
parent
34fb7b6963
commit
ba28ffa3db
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
example-clients/jack_control
+ 1
- 1
example-clients/jack_control
View File
@@ -43,7 +43,7 @@ def python_type_to_jackdbus_type(value, type_char):
if type_char == "b":
return bool_convert(value);
elif type_char == "y":
return dbus.Byte(value);
return dbus.Byte(
ord(
value
)
);
elif type_char == "i":
return dbus.Int32(value)
elif type_char == "u":
Write
Preview
Loading…
Cancel
Save