/// Signal to define sketch mode
void launchSketch();
+ /// Signal to update property panel
+ void updatePropPanel();
+
protected:
/// Virtual method called when operation started (see start() method for more description)
/// Default impl calls corresponding slot and commits immediately.
if (aOperation->inherits("PartSet_OperationSketch")) {
PartSet_OperationSketch* aSketchOpe = static_cast<PartSet_OperationSketch*>(aOperation);
updateLabel(aSketchOpe);
- connect(aSketchOpe, SIGNAL(planeSelected(double, double, double)), this,
+ connect(aSketchOpe, SIGNAL(updatePropPanel()), this,
SLOT(onPlaneSelected()));
}
}