| 201 | } |
| 202 | |
| 203 | void CustomPointPrivate::mouseReleaseEvent(QGraphicsSceneMouseEvent* event) { |
| 204 | // don't move when the parent is a InfoElement, because there |
| 205 | // the custompoint position changes by the mouse are not allowed |
| 206 | if (q->parentAspect()->type() == AspectType::InfoElement) |
| 207 | return; |
| 208 | |
| 209 | WorksheetElementPrivate::mouseReleaseEvent(event); |
| 210 | } |
| 211 | |
| 212 | // ############################################################################## |
| 213 | // ################## Serialization/Deserialization ########################### |
nothing calls this directly
no test coverage detected