zed/crates/collab_ui/src
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
..
chat_panel text rendering: support strikethroughs (#7363) 2024-02-07 16:51:27 +02:00
collab_panel Add CheckboxWithLabel component (#7881) 2024-02-15 21:00:30 -05:00
notifications Initialize the SystemAppearance using the app's global window appearance (#7508) 2024-02-07 11:51:18 -05:00
channel_view.rs Links to channel notes (#7262) 2024-02-01 22:22:02 -07:00
chat_panel.rs Replace full with size_full (#7888) 2024-02-15 22:26:49 -05:00
collab_panel.rs Replace full with size_full (#7888) 2024-02-15 22:26:49 -05:00
collab_titlebar_item.rs revert single channel click (#7738) 2024-02-13 12:53:49 -07:00
collab_ui.rs revert single channel click (#7738) 2024-02-13 12:53:49 -07:00
face_pile.rs Store a z-index id per-layer 2024-01-22 10:16:59 -05:00
notification_panel.rs Rename BellBadged to BellDot (#6820) 2024-01-26 18:48:16 -05:00
notifications.rs Add stories for collab notifications (#3967) 2024-01-08 21:54:59 -05:00
panel_settings.rs Display setting documentation in settings.json (#3936) 2024-01-08 19:30:18 +01:00