diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-25 01:41:06 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-03-25 01:45:00 +0100 |
commit | 252bfd133d77f808c6eea0c9dfc5a7d5d9226fcb (patch) | |
tree | d71b1f3e577fb61f6411ce690b54238d34959892 | |
parent | 5b1f0ac8c2529cb5fa1085a0cac797d937df1119 (diff) |
show full atlas name in inspector
-rw-r--r-- | editor/inspect-types.cpp | 2 |
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), }, |