From c2a415ceb9ce75610001ea7a027d65b2054afed9 Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Sun, 13 Nov 2022 18:14:19 -0500 Subject: [PATCH] Ensure property name is completely drawn. The word `(optional)` made the label too long to be drawn, so we remove it. --- korman/properties/modifiers/avatar.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/korman/properties/modifiers/avatar.py b/korman/properties/modifiers/avatar.py index fb3413f..5dc4b59 100644 --- a/korman/properties/modifiers/avatar.py +++ b/korman/properties/modifiers/avatar.py @@ -121,7 +121,7 @@ class PlasmaSittingBehavior(idprops.IDPropObjectMixin, PlasmaModifierProperties, facing_degrees = IntProperty(name="Tolerance", description="How far away we will tolerate the avatar facing the clickable", min=-180, max=180, default=45) - sitting_camera = PointerProperty(name="Camera (optional)", + sitting_camera = PointerProperty(name="Camera", description="Activate a specific camera when sitting down", type=bpy.types.Object, poll=idprops.poll_camera_objects,