From bc11d80a52b9728b0a5a0cab24b1b037744c50d2 Mon Sep 17 00:00:00 2001 From: Sam Gondelman Date: Tue, 5 Feb 2019 23:07:57 -0800 Subject: [PATCH] fix create selectionBox wireframe --- interface/src/ui/overlays/Overlays.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/ui/overlays/Overlays.cpp b/interface/src/ui/overlays/Overlays.cpp index 2580104d94..150fa22cd5 100644 --- a/interface/src/ui/overlays/Overlays.cpp +++ b/interface/src/ui/overlays/Overlays.cpp @@ -351,7 +351,7 @@ EntityItemProperties Overlays::convertOverlayToEntityProperties(QVariantMap& ove return "none"; }); - if (type == "Shape" || type == "Gizmo") { + if (type == "Shape" || type == "Box" || type == "Sphere" || type == "Gizmo") { RENAME_PROP(solid, isSolid); RENAME_PROP(isFilled, isSolid); RENAME_PROP(filled, isSolid); @@ -1967,4 +1967,4 @@ QVector Overlays::findOverlays(const glm::vec3& center, float radius) { * outwards from the inner radius; a negative value draws tick marks inwards from the outer radius. * @property {Color} majorTickMarksColor = 0, 0, 0 - The color of the major tick marks. * @property {Color} minorTickMarksColor = 0, 0, 0 - The color of the minor tick marks. - */ \ No newline at end of file + */