We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Windows
latest from Github at the time of writing
No response
A GUI that is collapsed still intercepts and handles some mouse and keyboard events. In particular, I noticed this for the following events:
fun main() = application { program { val s = object { @ActionParameter("Button") fun f() { println("Clicked") } } val gui = GUI() gui.add(s) extend(gui) mouse.scrolled.listen { println(it.propagationCancelled) } keyboard.keyDown.listen { println(it.propagationCancelled) } } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Operating System
Windows
OPENRNDR version
latest from Github at the time of writing
ORX version
latest from Github at the time of writing
Java version (if applicable)
No response
Describe the bug
A GUI that is collapsed still intercepts and handles some mouse and keyboard events. In particular, I noticed this for the following events:
Steps to reproduce the bug
The text was updated successfully, but these errors were encountered: