| 1738 | \see mouseMoveEvent, mouseReleaseEvent, mouseDoubleClickEvent, wheelEvent |
| 1739 | */ |
| 1740 | void QCPLayerable::mousePressEvent(QMouseEvent *event, const QVariant &details) |
| 1741 | { |
| 1742 | Q_UNUSED(details) |
| 1743 | event->ignore(); |
| 1744 | } |
| 1745 | |
| 1746 | /*! |
| 1747 | 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