Currently, if a GUI external implement a mousewheel function, it will always block patcher scrolling when mouse is over, and there no way to avoid that ? I'm I wrong ?
Why the mousewheel function doesn't share the same "filter" behavior that the key function?
Something like :
long object_mousewheel(t_myobj *x, t_object *patcherview, t_pt pt, long modifiers)
{
long filter = 0;
if (keycode == 97)
{
// only block patcher scrolling if needed
filter = 1;
}
return filter;
}
Ps : I seen in the Max 6.1.7 release notes :
number/flonum: no longer stops scrolling in bpatcher
,
How to achieve that ?
Thanks