You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This behaviour is standard on MacOS but for VSTs and AUs the most common behaviour (incl. Logic) is to allow for this use case:
DAW window or some other plugin window has focus
User hovers over plugin controls and sees hover state related indications - this works i.e. MotionEvent received
User presses mouse on a knob in a Pugl plugin window (ButtonPressEvent) and can immediately drag it (MotionEvents). The first part doesn't work, the ButtonPressEvent is not received. User needs to release mouse button and press it again.
Tried a workaround via FocusInEvent which is received but this lacks information like position and button. But even if that information would be avialble the workaround would not work because MotionEvent(s) don't come through until mouse button release/press.
The text was updated successfully, but these errors were encountered:
Presumably you can figure out how those VSTs and AUs do it. My guess is grabbing focus...
I don't really care about this to be honest, so I won't be looking into it myself, but I'd be happy to include any reasonable changes necessary to make workaround possible.
This behaviour is standard on MacOS but for VSTs and AUs the most common behaviour (incl. Logic) is to allow for this use case:
Tried a workaround via FocusInEvent which is received but this lacks information like position and button. But even if that information would be avialble the workaround would not work because MotionEvent(s) don't come through until mouse button release/press.
The text was updated successfully, but these errors were encountered: