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:
Finn Evers 2025-08-15 22:27:44 +02:00 committed by Orual
parent a17ed9335b
commit 9eb688881f
No known key found for this signature in database
32 changed files with 106 additions and 123 deletions

View file

@ -595,9 +595,7 @@ impl Render for TextInput {
.w_full()
.p(px(4.))
.bg(white())
.child(TextElement {
input: cx.entity().clone(),
}),
.child(TextElement { input: cx.entity() }),
)
}
}