Browse Source

fix ui.expand_... functions to also expand max_rect

pull/28/head
Emil Ernerfeldt 4 years ago
parent
commit
ba98ea715f
  1. 5
      egui/src/ui.rs

5
egui/src/ui.rs

@ -290,12 +290,13 @@ impl Ui {
/// Expand the bounding rect of this ui to include a child at the given rect.
pub fn expand_to_include_child(&mut self, rect: Rect) {
self.min_rect.extend_with(rect.min);
self.min_rect.extend_with(rect.max);
self.min_rect = self.min_rect.union(rect);
self.max_rect = self.max_rect.union(rect);
}
pub fn expand_to_size(&mut self, size: Vec2) {
self.min_rect.extend_with(self.left_top() + size);
self.max_rect.extend_with(self.left_top() + size);
}
// ------------------------------------------------------------------------

Loading…
Cancel
Save