diff --git a/src/app/valentina/core/vtooloptionspropertybrowser.cpp b/src/app/valentina/core/vtooloptionspropertybrowser.cpp index c55328f53..7e440d8a3 100644 --- a/src/app/valentina/core/vtooloptionspropertybrowser.cpp +++ b/src/app/valentina/core/vtooloptionspropertybrowser.cpp @@ -33,6 +33,7 @@ #include "../vwidgets/vgraphicssimpletextitem.h" #include "../vwidgets/vcontrolpointspline.h" #include "../vwidgets/vsimplepoint.h" +#include "../vwidgets/vsimplecurve.h" #include "../vpropertyexplorer/vproperties.h" #include "vformulaproperty.h" #include "../vpatterndb/vformula.h" @@ -174,6 +175,10 @@ void VToolOptionsPropertyBrowser::ShowItemOptions(QGraphicsItem *item) currentItem = item->parentItem(); ShowItemOptions(currentItem); break; + case VSimpleCurve::Type: + currentItem = item->parentItem(); + ShowItemOptions(currentItem); + break; case VToolTrueDarts::Type: ShowOptionsToolTrueDarts(item); break;