mirror of
https://github.com/emilk/egui.git
synced 2026-07-13 10:08:54 +00:00
a6a9501d12
At crates\egui_extras\src\layout.rs : Allocate allocation_rect instead of max_rect. Go back from this: ``` let response = self.ui.allocate_rect(max_rect, self.sense); let response = response.with_new_rect(allocation_rect); return (used_rect, response) ``` to this: ``` let response = self.ui.allocate_rect(allocation_rect, self.sense); return (used_rect, response) ``` In order to allocate the Closes <https://github.com/emilk/egui/issues/3956>.