| 566 | } |
| 567 | |
| 568 | void MapView::wheelEvent(QWheelEvent *e) |
| 569 | { |
| 570 | const qreal ang = e->angleDelta().y() / 8; // e->delta() / 8; |
| 571 | zoom(pow(2, ang/100)); |
| 572 | } |
| 573 | |
| 574 | void MapView::mousePressEvent(QMouseEvent *e) |
| 575 | { |
nothing calls this directly
no outgoing calls
no test coverage detected