Remove some redundant entity clones (#36274)
`cx.entity()` already returns an owned entity, so there is no need for these clones. Release Notes: - N/A
This commit is contained in:
parent
7199c733b2
commit
3e0a755486
32 changed files with 106 additions and 123 deletions
|
@ -127,7 +127,7 @@ impl Render for EditPredictionButton {
|
|||
}),
|
||||
);
|
||||
}
|
||||
let this = cx.entity().clone();
|
||||
let this = cx.entity();
|
||||
|
||||
div().child(
|
||||
PopoverMenu::new("copilot")
|
||||
|
@ -182,7 +182,7 @@ impl Render for EditPredictionButton {
|
|||
let icon = status.to_icon();
|
||||
let tooltip_text = status.to_tooltip();
|
||||
let has_menu = status.has_menu();
|
||||
let this = cx.entity().clone();
|
||||
let this = cx.entity();
|
||||
let fs = self.fs.clone();
|
||||
|
||||
return div().child(
|
||||
|
@ -331,7 +331,7 @@ impl Render for EditPredictionButton {
|
|||
})
|
||||
});
|
||||
|
||||
let this = cx.entity().clone();
|
||||
let this = cx.entity();
|
||||
|
||||
let mut popover_menu = PopoverMenu::new("zeta")
|
||||
.menu(move |window, cx| {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue