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
In src/windy/platforms/x11.nim the Window is missing the onFrame field. Here's a diff of my fix:
--- a/src/windy/platforms/linux/x11.nim +++ b/src/windy/platforms/linux/x11.nim @@ -5,6 +5,7 @@ type Window* = ref object onCloseRequest*: Callback + onFrame*: Callback onMove*: Callback onResize*: Callback onFocusChange*: Callback @@ -782,6 +783,8 @@ proc pollEvents(window: Window) = window.prevSize = ev.configure.size if window.onResize != nil: window.onResize() + if window.onFrame != nil: + window.onFrame() of xeMotion: window.mousePrevPos = window.mousePos
The text was updated successfully, but these errors were encountered:
This should be fixed now with this merged: #86
Sorry, something went wrong.
No branches or pull requests
In src/windy/platforms/x11.nim the Window is missing the onFrame field. Here's a diff of my fix:
The text was updated successfully, but these errors were encountered: