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
It seems the contentHeight of a window inside a window is ignored or maybe overwritten by some handler?. E.g:
class WindowApp: Application(){ override fun start(){ root("kvapp"){ window("OuterWindow", contentWidth=600.px, contentHeight=600.px, isResizable = false) { window("InnerWindow", contentWidth=200.px, contentHeight=200.px, isResizable = false) { +"The contentHeight seems to be ignored while the contentWidth apparently not." } } } } }
The text was updated successfully, but these errors were encountered:
Fix inner window height (#549)
27eda0f
Works now in 8.1.0. Thank you.
Sorry, something went wrong.
No branches or pull requests
It seems the contentHeight of a window inside a window is ignored or maybe overwritten by some handler?. E.g:
The text was updated successfully, but these errors were encountered: