summaryrefslogtreecommitdiffhomepage
path: root/editor
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-03-24 23:35:45 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-03-24 23:36:32 +0100
commitf97fc145a3e70598446c3672dcbb528e181777c1 (patch)
tree4fb7a8dd29e91a1cd8137fc4cfc0f3f8b526617c /editor
parent5e3cd10000941574de76620d8d5249924181d824 (diff)
editor: clamp bbox_size min value to {1,1}
Diffstat (limited to 'editor')
-rw-r--r--editor/inspect-types.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/inspect-types.cpp b/editor/inspect-types.cpp
index c42d4eb4..a06f8fdb 100644
--- a/editor/inspect-types.cpp
+++ b/editor/inspect-types.cpp
@@ -82,6 +82,7 @@ struct entity_accessors<object, inspect_intent_t> {
[](const object& x) { return x.bbox_size; },
[](object& x, Vector2ub value) { x.set_bbox(x.offset, x.bbox_offset, value, x.pass); },
[](const object& x) { return x.pass == pass_mode::pass ? st::readonly : st::enabled; },
+ constantly(constraints::range<Vector2ub>{{1,1}, {255, 255}}),
},
E::type<bool>::field{"ephemeral"_s,
[](const object& x) { return x.ephemeral; },