diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2020-03-25 10:45:45 +0100 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2020-03-25 10:45:45 +0100 |
commit | 0de7d14130fc243f8849c8747babf95e79619110 (patch) | |
tree | e04530c5af0db413f5390dd147d17ec409754727 /include | |
parent | 9d5f007a65dfbdb45d95a745476a55be215f051b (diff) | |
download | synthpod-0de7d14130fc243f8849c8747babf95e79619110.tar.xz |
jack: order ports according to plugin create time.
Diffstat (limited to 'include')
-rw-r--r-- | include/synthpod_private.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/synthpod_private.h b/include/synthpod_private.h index 50fbd4af..f7d4cc28 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -362,6 +362,7 @@ struct _reg_t { reg_item_t module_position_y; reg_item_t module_alias; reg_item_t module_reinstantiate; + reg_item_t module_created; reg_item_t node_position_x; reg_item_t node_position_y; reg_item_t graph_position_x; @@ -657,6 +658,7 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->synthpod.module_position_y, world, map, SYNTHPOD_PREFIX"modulePositionY"); _register(®s->synthpod.module_alias, world, map, SYNTHPOD_PREFIX"moduleAlias"); _register(®s->synthpod.module_reinstantiate, world, map, SYNTHPOD_PREFIX"moduleReinstantiate"); + _register(®s->synthpod.module_created, world, map, SYNTHPOD_PREFIX"moduleCreated"); _register(®s->synthpod.node_position_x, world, map, SYNTHPOD_PREFIX"nodePositionX"); _register(®s->synthpod.node_position_y, world, map, SYNTHPOD_PREFIX"nodePositionY"); _register(®s->synthpod.graph_position_x, world, map, SYNTHPOD_PREFIX"graphPositionX"); @@ -917,6 +919,7 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.module_position_y); _unregister(®s->synthpod.module_alias); _unregister(®s->synthpod.module_reinstantiate); + _unregister(®s->synthpod.module_created); _unregister(®s->synthpod.node_position_x); _unregister(®s->synthpod.node_position_y); _unregister(®s->synthpod.graph_position_x); |