diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-11-22 22:12:03 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2016-11-22 22:12:03 +0100 |
commit | b5b2db8b7c69176157bdda8bfc0bbc4d0a18b329 (patch) | |
tree | 0b0cc1df43652a3866fd2169f09f2d3ff1011d18 /osc_inspector.c | |
parent | 8cc5248c27be2b3071361f9bbebf390052ac44f1 (diff) | |
download | sherlock.lv2-b5b2db8b7c69176157bdda8bfc0bbc4d0a18b329.tar.xz |
migrate to nk_list_view.
* increase efficiency
* add odd-line shadowin
* remove count property
* redesign follow-mode
Diffstat (limited to 'osc_inspector.c')
-rw-r--r-- | osc_inspector.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/osc_inspector.c b/osc_inspector.c index ef9622a..f3ebb58 100644 --- a/osc_inspector.c +++ b/osc_inspector.c @@ -76,8 +76,7 @@ instantiate(const LV2_Descriptor* descriptor, double rate, return NULL; } - if( !props_register(&handle->props, &stat_count, &handle->state.count, &handle->stash.count) - || !props_register(&handle->props, &stat_overwrite, &handle->state.overwrite, &handle->stash.overwrite) + if( !props_register(&handle->props, &stat_overwrite, &handle->state.overwrite, &handle->stash.overwrite) || !props_register(&handle->props, &stat_block, &handle->state.block, &handle->stash.block) || !props_register(&handle->props, &stat_follow, &handle->state.follow, &handle->stash.follow) ) { |