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
bevy 0.10.0
I upgrade my bevy project from 0.9 to 0.10
The 'min_size' Style property of the NodeBundle does not seem to be taken into account:
NodeBundle { style: Style { min_size: Size { height: Val::Px(100.), width: Val::Px(250.), }, ..default() }, ..default() }
Give this result:
Instead of this:
This can be fixed replacing 'min_size' by 'size' but it loses all the 'responsivness'
The text was updated successfully, but these errors were encountered:
this has probably been fixed by #7948
Sorry, something went wrong.
This should be fixed in bevy 0.10.1 :)
0.10.1
No branches or pull requests
Bevy version
bevy 0.10.0
What you did
I upgrade my bevy project from 0.9 to 0.10
What went wrong
The 'min_size' Style property of the NodeBundle does not seem to be taken into account:
Give this result:
Instead of this:
This can be fixed replacing 'min_size' by 'size' but it loses all the 'responsivness'
The text was updated successfully, but these errors were encountered: