-
Notifications
You must be signed in to change notification settings - Fork 568
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
unimplemented function #1589
Comments
I think it's better to continue here than in the merge PR. Reminder:
So it looks like that if the window has no initial size, there is an issue, but I don't think Ex: WindowDesc::new(Padding::new(5., Label::new("Hello Bluetooth monitor")))
.window_size((1., 1.))
.window_size_policy(WindowSizePolicy::Content)
.resizable(false) This I think did what you want. |
indeed, i just find it "sad" to have to define a size even when it should take the Content size by default. |
I think an okay solution could be to change Or just handle the thing in the windows druid-shell but set the size is a I know @Ciantic want to do some refactoring on the windows druid-shell he may have a idea. |
yes, this sounds like a reasonable workaround. |
Can't use
WindowSizePolicy::Content
on windows until https://github.com/linebender/druid/blob/master/druid-shell/src/platform/windows/window.rs#L1661-L1664 is implementedThe text was updated successfully, but these errors were encountered: