Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix
StripBuilder
not allocating its used space (#3957)
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 <#3956>.
- Loading branch information