commit c979b9a4d749e6a7b758e66418c2101f0096df54 parent 4a9e54c74733818c7931973dc19f7e4ad5b28807 Author: evermind <evermind> Date: Tue, 10 Mar 2009 11:50:39 +0000 show the name of Zynaddsubfx in the lash_panel Diffstat:
M | src/Misc/LASHClient.C | | | 7 | ++++++- |
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/src/Misc/LASHClient.C b/src/Misc/LASHClient.C @@ -21,8 +21,13 @@ void LASHClient::setalsaid(int id) { void LASHClient::setjackname(const char* name) { if (lash_enabled(client)) { - if (name != NULL) + if (name != NULL){ lash_jack_client_name(client, name); + + lash_event_t *event = lash_event_new_with_type(LASH_Client_Name); + lash_event_set_string(event, name); + lash_send_event(client, event); + } } }