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
This commit is contained in:
parent
a161a7d0c9
commit
4310b0b8de
5 changed files with 7 additions and 14 deletions
|
@ -209,13 +209,13 @@ impl Render for MarkdownPreviewView {
|
|||
.id("MarkdownPreview")
|
||||
.key_context("MarkdownPreview")
|
||||
.track_focus(&self.focus_handle)
|
||||
.full()
|
||||
.size_full()
|
||||
.bg(cx.theme().colors().editor_background)
|
||||
.p_4()
|
||||
.child(
|
||||
div()
|
||||
.flex_grow()
|
||||
.map(|this| this.child(list(self.list_state.clone()).full())),
|
||||
.map(|this| this.child(list(self.list_state.clone()).size_full())),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue