Skip to content

Commit

Permalink
Fix min height mistakenly being changed to max height
Browse files Browse the repository at this point in the history
  • Loading branch information
TimJentzsch committed Aug 7, 2023
1 parent fdfaf5b commit 4b65e41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/example_dialogue_view/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ fn setup(mut commands: Commands) {
NodeBundle {
style: Style {
width: Val::Px(DIALOG_WIDTH),
max_height: Val::Px(50.0),
min_height: Val::Px(50.0),
flex_direction: FlexDirection::Column,
justify_content: JustifyContent::SpaceAround,
align_items: AlignItems::FlexStart,
Expand Down

0 comments on commit 4b65e41

Please sign in to comment.