Skip to content
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

Window in window contentHeight ignored? #549

Closed
may-day opened this issue Nov 23, 2024 · 1 comment
Closed

Window in window contentHeight ignored? #549

may-day opened this issue Nov 23, 2024 · 1 comment

Comments

@may-day
Copy link

may-day commented Nov 23, 2024

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."
                }
            }
        }
    }
}
rjaros added a commit that referenced this issue Dec 3, 2024
@may-day
Copy link
Author

may-day commented Dec 4, 2024

Works now in 8.1.0. Thank you.

@may-day may-day closed this as completed Dec 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant