| 234 | |
| 235 | |
| 236 | void |
| 237 | ConnectionGraphicsObject:: |
| 238 | hoverLeaveEvent(QGraphicsSceneHoverEvent* event) |
| 239 | { |
| 240 | _connection.connectionGeometry().setHovered(false); |
| 241 | |
| 242 | update(); |
| 243 | _scene.connectionHoverLeft(connection()); |
| 244 | event->accept(); |
| 245 | } |
| 246 | |
| 247 | |
| 248 | void |
nothing calls this directly
no test coverage detected