Update to egui version 0.33, also fix weird spacing between inputs

This commit is contained in:
elvis
2025-10-29 18:11:48 +01:00
parent 284f136409
commit cce3b5a7a0
6 changed files with 84 additions and 97 deletions

View File

@ -80,7 +80,7 @@ where
&& ui.input(|i| i.key_pressed(Key::Enter));
let max_height =
ui.input(|i| f32::max(i.screen_rect.height() * 0.5, 200.));
ui.input(|i| f32::max(i.content_rect().height() * 0.5, 200.));
let scroll_area_width = resp.rect.width();
let all_kinds = all_kinds.all_kinds();