summaryrefslogtreecommitdiffstats
path: root/src/libs/client/OSCClientReceiver.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2007-10-05 06:01:39 +0000
committerDavid Robillard <d@drobilla.net>2007-10-05 06:01:39 +0000
commit54e981f0d3599fc7413a30c00562b3ea789e2fe7 (patch)
treefb62ca7d068dbe29c3228136fbd2bf155b247cf8 /src/libs/client/OSCClientReceiver.cpp
parentc7ebab1bda68e184ef9f7063b48fe2a65113b961 (diff)
downloadingen-54e981f0d3599fc7413a30c00562b3ea789e2fe7.tar.gz
ingen-54e981f0d3599fc7413a30c00562b3ea789e2fe7.tar.bz2
ingen-54e981f0d3599fc7413a30c00562b3ea789e2fe7.zip
Fix ridiculous CPU chewing on embedded LV2 GUIs.
For some reason the GUI widget's size request signal fires continuously... this needs fixing. git-svn-id: http://svn.drobilla.net/lad/ingen@824 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/OSCClientReceiver.cpp')
-rw-r--r--src/libs/client/OSCClientReceiver.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/client/OSCClientReceiver.cpp b/src/libs/client/OSCClientReceiver.cpp
index b9f5a70d..0a1fa105 100644
--- a/src/libs/client/OSCClientReceiver.cpp
+++ b/src/libs/client/OSCClientReceiver.cpp
@@ -35,7 +35,7 @@ OSCClientReceiver::OSCClientReceiver(int listen_port)
_listen_port(listen_port),
_st(NULL)
{
- start(false);
+ start(true);
}