diff options
author | David Robillard <d@drobilla.net> | 2011-12-18 18:22:04 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2011-12-18 18:22:04 +0000 |
commit | 97fd64862c2516746d40d5f570fc3f7b2ea45e79 (patch) | |
tree | c6498df65e3a04cfb30f13ee18db314284227101 /src | |
parent | 64e90886d5dba94143a07e04b0964483a7023e01 (diff) | |
download | ganv-97fd64862c2516746d40d5f570fc3f7b2ea45e79.tar.gz ganv-97fd64862c2516746d40d5f570fc3f7b2ea45e79.tar.bz2 ganv-97fd64862c2516746d40d5f570fc3f7b2ea45e79.zip |
Fix port controls update while dragging/clicking.
git-svn-id: http://svn.drobilla.net/lad/trunk/ganv@3888 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src')
-rw-r--r-- | src/module.c | 2 | ||||
-rw-r--r-- | src/port.c | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/src/module.c b/src/module.c index ea9ff99..8ca3d72 100644 --- a/src/module.c +++ b/src/module.c @@ -520,11 +520,9 @@ ganv_module_update(GanvItem* item, int flags) GanvItemClass* item_class = GANV_ITEM_CLASS(parent_class); item_class->update(item, flags); - /* FOREACH_PORT(module->impl->ports, p) { ganv_item_invoke_update(GANV_ITEM(*p), flags); } - */ } static void @@ -406,7 +406,6 @@ ganv_port_set_control_value(GanvPort* port, impl->control->value = value; ganv_item_request_update(GANV_ITEM(port)); - ganv_item_request_update(GANV_ITEM(port->impl->control->rect)); } void |