| 222 | |
| 223 | |
| 224 | void |
| 225 | ConnectionGraphicsObject:: |
| 226 | hoverEnterEvent(QGraphicsSceneHoverEvent* event) |
| 227 | { |
| 228 | _connection.connectionGeometry().setHovered(true); |
| 229 | |
| 230 | update(); |
| 231 | _scene.connectionHovered(connection(), event->screenPos()); |
| 232 | event->accept(); |
| 233 | } |
| 234 | |
| 235 | |
| 236 | void |
nothing calls this directly
no test coverage detected