diff --git a/interface/src/ui/overlays/Base3DOverlay.cpp b/interface/src/ui/overlays/Base3DOverlay.cpp
index 6922ca87b7..84a6fe1da4 100644
--- a/interface/src/ui/overlays/Base3DOverlay.cpp
+++ b/interface/src/ui/overlays/Base3DOverlay.cpp
@@ -212,8 +212,6 @@ void Base3DOverlay::setProperties(const QVariantMap& originalProperties) {
* parentID
set, otherwise the same value as rotation
.
* @property {boolean} isSolid=false - Synonyms: solid, isFilled
,
* filled
, and filed
. Antonyms: isWire
and wire
.
- * Deprecated: The erroneous property spelling "filed
" is deprecated and support for it will
- * be removed.
* @property {boolean} isDashedLine=false - If true
, a dashed line is drawn on the overlay's edges. Synonym:
* dashed
.
* @property {boolean} ignoreRayIntersection=false - If true
,
@@ -241,7 +239,7 @@ QVariant Base3DOverlay::getProperty(const QString& property) {
if (property == "localRotation" || property == "localOrientation") {
return quatToVariant(getLocalOrientation());
}
- if (property == "isSolid" || property == "isFilled" || property == "solid" || property == "filled" || property == "filed") {
+ if (property == "isSolid" || property == "isFilled" || property == "solid" || property == "filled") {
return _isSolid;
}
if (property == "isWire" || property == "wire") {