Files
oak-gpui/crates
Marshall Bowers 4310b0b8de Replace full with size_full (#7888)
This PR removes the `full` style method and replaces it with
`size_full`, as the two do the same thing.

This is the generated code for `size_full`:

```rs
#[doc = "Sets the width and height of the element.\n\n100%"]
fn size_full(mut self) -> Self {
    let style = self.style();
    style.size.width = Some((gpui::relative(1.)).into());
    style.size.height = Some((gpui::relative(1.)).into());
    self
}
```

Release Notes:

- N/A
2024-02-15 22:26:49 -05:00
..
2024-02-13 12:53:49 -07:00
2024-02-09 23:12:26 -07:00
2024-01-29 23:47:20 -05:00
2024-02-15 21:54:43 -05:00
2024-02-12 22:28:26 -07:00
2024-02-15 22:26:49 -05:00
2024-02-14 14:36:40 -07:00
2024-02-13 13:20:14 -07:00
2024-01-29 23:47:20 -05:00