diff options
author | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2009-10-22 01:26:47 +0000 |
---|---|---|
committer | Thomas O Fredericks <mrtof@users.sourceforge.net> | 2009-10-22 01:26:47 +0000 |
commit | a186c7faeac2f46ba9e24cce3bc2296ee5f7c942 (patch) | |
tree | b49d471f53a0585a98dbe8a4d9740fe0046e3c12 /src/paramCustom.c | |
parent | 20c8f604bb7ea3a2b7b06d836fb231ef6de7ece1 (diff) |
Made paramGui only re-build the gui when requested
svn path=/trunk/externals/tof/; revision=12632
Diffstat (limited to 'src/paramCustom.c')
-rw-r--r-- | src/paramCustom.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/paramCustom.c b/src/paramCustom.c index c1cddda..4f6c9c2 100644 --- a/src/paramCustom.c +++ b/src/paramCustom.c @@ -139,10 +139,8 @@ static void* paramCustom_new(t_symbol *s, int ac, t_atom *av) - x->param = param_register(x,root,path,\ - NULL,\ - (t_paramSaveMethod) paramCustom_save,\ - NULL); + x->param = param_register(x,root,path, NULL,\ + (t_paramSaveMethod) paramCustom_save,NULL); if (!x->param) return NULL; |