| 295 | |
| 296 | |
| 297 | void |
| 298 | FlowView:: |
| 299 | keyReleaseEvent(QKeyEvent *event) |
| 300 | { |
| 301 | switch (event->key()) |
| 302 | { |
| 303 | case Qt::Key_Shift: |
| 304 | setDragMode(QGraphicsView::ScrollHandDrag); |
| 305 | break; |
| 306 | |
| 307 | default: |
| 308 | break; |
| 309 | } |
| 310 | QGraphicsView::keyReleaseEvent(event); |
| 311 | } |
| 312 | |
| 313 | |
| 314 | void |
nothing calls this directly
no outgoing calls
no test coverage detected