From 6b8e354661e9b4c8e74ab3379add3b36fc28a2a5 Mon Sep 17 00:00:00 2001 From: Roman Telezhynskyi Date: Wed, 25 May 2016 11:46:57 +0300 Subject: [PATCH] Click on VSimpleCurve did not call a visualization. --HG-- branch : develop --- src/app/valentina/core/vtooloptionspropertybrowser.cpp | 5 +++++ 1 file changed, 5 insertions(+) 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;