mirror of
https://github.com/alsa-project/alsa-tools.git
synced 2025-10-29 05:40:25 -04:00
envy24control wordclock text patch
From: John Rigg <ad@sound-man.co.uk> I reported a bug in envy24control about the text displayed when using the BNC word clock input on a Delta 1010 (bug id 0001677). It says `No signal' when locked and `Locked' when there's no signal. I wasn't sure how to submit a patch using the Bugtrack interface, so I've attached it here (this fixes it in alsa-tools-1.0.10).
This commit is contained in:
parent
90377dd7e7
commit
4ba26a7f4f
1 changed files with 1 additions and 1 deletions
|
|
@ -170,7 +170,7 @@ gint master_clock_status_timeout_callback(gpointer data)
|
|||
if ((err = snd_ctl_elem_read(ctl, sw)) < 0)
|
||||
g_print("Unable to determine word clock status: %s\n", snd_strerror(err));
|
||||
gtk_label_set_text(GTK_LABEL(hw_master_clock_status_label),
|
||||
snd_ctl_elem_value_get_boolean(sw, 0) ? "Locked" : "No signal");
|
||||
snd_ctl_elem_value_get_boolean(sw, 0) ? "No signal" : "Locked");
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue