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
|
@ -291,7 +291,7 @@ pub(crate) fn new_debugger_pane(
|
|||
let Some(project) = project.upgrade() else {
|
||||
return ControlFlow::Break(());
|
||||
};
|
||||
let this_pane = cx.entity().clone();
|
||||
let this_pane = cx.entity();
|
||||
let item = if tab.pane == this_pane {
|
||||
pane.item_for_index(tab.ix)
|
||||
} else {
|
||||
|
@ -502,7 +502,7 @@ pub(crate) fn new_debugger_pane(
|
|||
.on_drag(
|
||||
DraggedTab {
|
||||
item: item.boxed_clone(),
|
||||
pane: cx.entity().clone(),
|
||||
pane: cx.entity(),
|
||||
detail: 0,
|
||||
is_active: selected,
|
||||
ix,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue