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.
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
Hallo, MIrko Petrovich hat gesagt: // MIrko Petrovich wrote:
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.
Ah, I didn't recognize this yet. Is there a #define I could set in the code to let knob stay compatible with 0.36 or is a #define necessary at all?
Frank Barknecht _ ______footils.org__