summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-03-25 01:41:06 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-03-25 01:45:00 +0100
commit252bfd133d77f808c6eea0c9dfc5a7d5d9226fcb (patch)
treed71b1f3e577fb61f6411ce690b54238d34959892
parent5b1f0ac8c2529cb5fa1085a0cac797d937df1119 (diff)
show full atlas name in inspector
-rw-r--r--editor/inspect-types.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/inspect-types.cpp b/editor/inspect-types.cpp
index a06f8fdb..8a366bfb 100644
--- a/editor/inspect-types.cpp
+++ b/editor/inspect-types.cpp
@@ -27,7 +27,7 @@ struct entity_accessors<object, inspect_intent_t> {
constantly(st::readonly),
},
E::type<StringView>::field{"atlas"_s,
- [](const object& x) { return loader.strip_prefix(x.atlas->name()); },
+ [](const object& x) { return x.atlas->name(); },
ignored_write,
constantly(st::readonly),
},