diff options
| author | HampusM <hampus@hampusmat.com> | 2026-07-23 17:40:15 +0200 |
|---|---|---|
| committer | HampusM <hampus@hampusmat.com> | 2026-07-23 17:40:15 +0200 |
| commit | a34c019279661332f95d5d843924998c2eaecb17 (patch) | |
| tree | 615614597f4be3a13d6b8b83dcb5dae8c63d8ab6 /engine/src/ui/view | |
| parent | 624e6dd450944e67d84ad7afda54ae2abd277aba (diff) | |
refactor(engine): correct query type parameters
Diffstat (limited to 'engine/src/ui/view')
| -rw-r--r-- | engine/src/ui/view/world.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/ui/view/world.rs b/engine/src/ui/view/world.rs index 9803328..8552ec1 100644 --- a/engine/src/ui/view/world.rs +++ b/engine/src/ui/view/world.rs @@ -410,7 +410,7 @@ fn enter_add_component_popup_state( let popup_name = format!("Add component to {ent_title}"); let mut searchable_components = world - .query::<(&ComponentInfo,), ()>() + .query::<(&ComponentInfo,)>() .iter_with_euids() .map(|(id, (component_info,))| { let user_creatable = if component_info.type_reflection.is_none() { |
