-
Notifications
You must be signed in to change notification settings - Fork 404
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Last chance doesn't work above widgets #4708
Comments
// whichever mouse callback(s) you need
void mouseDown(const MouseEvent &e)
{
if (e.mods.isRightButtonDown())
// handle right click
else if (e.originalComponent != this)
e.originalComponent->mouseDown(e);
} from https://forum.juce.com/t/how-to-intercept-some-mouse-events-in-the-parent-component/32653/6 is the rough answer inside MainFrame. Probably. This one is trickier since mouse events don't cascade in juce like they do in VSTGUI |
Semi-related - last chance click should also dismiss typeins, like it did in 1.9. |
|
Middle mouse click above slider, multiswitch, osc display etc. doesn't toggle mod assign mode like it used to in 1.9.
The text was updated successfully, but these errors were encountered: