summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-08-04 15:56:16 +0200
committerHampusM <hampus@hampusmat.com>2026-08-04 15:56:16 +0200
commit5ac541a31dd69bc7a842b4b4a44e010d575aadb8 (patch)
tree4d655f9ef90e3f2fa76682069539866f0d7dc555
parent6d275bd299736b8d5539f41a709d628dec14c478 (diff)
feat(engine): make entity titles in world ui view not parenthesized
-rw-r--r--engine/src/ui/view/world.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/src/ui/view/world.rs b/engine/src/ui/view/world.rs
index 8552ec1..8191d89 100644
--- a/engine/src/ui/view/world.rs
+++ b/engine/src/ui/view/world.rs
@@ -1540,7 +1540,7 @@ fn create_entity_title(ent_handle: &EntityHandle) -> String
let ent_name = ent_handle.get::<EntityName>();
format!(
- "{} ({})",
+ "{} {}",
ent_name
.as_ref()
.map(|ent_name| ent_name.name.as_ref())