diff options
author | David Robillard <d@drobilla.net> | 2006-06-18 00:49:37 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-06-18 00:49:37 +0000 |
commit | 466f1cdbe5f41a688112ebd462309e7679181f59 (patch) | |
tree | ad5490d70c82e36f9029769602eccef7113c6bf0 /src/libs | |
parent | c6d42dbbf9f6872d4fed67aecde8f7a65effab08 (diff) | |
download | ingen-466f1cdbe5f41a688112ebd462309e7679181f59.tar.gz ingen-466f1cdbe5f41a688112ebd462309e7679181f59.tar.bz2 ingen-466f1cdbe5f41a688112ebd462309e7679181f59.zip |
Set cursor in on_map instead of on_show (which segfaults sometimes?)
git-svn-id: http://svn.drobilla.net/lad/grauph@50 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs')
-rw-r--r-- | src/libs/engine/ObjectSender.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/libs/engine/ObjectSender.cpp b/src/libs/engine/ObjectSender.cpp index b5eb458d..24191a5d 100644 --- a/src/libs/engine/ObjectSender.cpp +++ b/src/libs/engine/ObjectSender.cpp @@ -51,16 +51,8 @@ ObjectSender::send_patch(ClientInterface* client, const Patch* patch) for (List<Node*>::const_iterator j = patch->nodes().begin(); j != patch->nodes().end(); ++j) { const Node* const node = (*j); - //const Port* const port = node->as_port(); // NULL unless a bridge node send_node(client, node); - - usleep(100); - - // If this is a bridge (input/output) node, send the patch control value as well - //if (port && port->port_info()->is_control()) - // client->control_change(port->path(), - // ((PortBase<sample>*)port)->buffer(0)->value_at(0)); } for (List<Connection*>::const_iterator j = patch->connections().begin(); |