Matthew Nish-Lapidus wrote:
hey everybody.
when using the knob external in pd0.37-11 on osx i can no longer open the properties panel for the object. when i right click and get the menu the properties option is dim.
matt.
Hi, you must edit knob.c :
comment :
knob_widgetbehavior.w_propertiesfn = knob_properties; knob_widgetbehavior.w_savefn = knob_save;
add:
class_setpropertiesfn(knob_class, &knob_properties); class_setsavefn(knob_class, &knob_save);
then recompile.
Mirko Petrovich CL