| 1710 | \see mouseMoveEvent, mouseReleaseEvent, mouseDoubleClickEvent, wheelEvent |
| 1711 | */ |
| 1712 | void QCPLayerable::mousePressEvent(QMouseEvent *event, const QVariant &details) |
| 1713 | { |
| 1714 | Q_UNUSED(details) |
| 1715 | event->ignore(); |
| 1716 | } |
| 1717 | |
| 1718 | /*! |
| 1719 | This event gets called when the user moves the mouse while holding a mouse button, after this |
nothing calls this directly
no test coverage detected