! This event gets called when the user releases the mouse button, after this layerable has become the mouse grabber by accepting the preceding \ref mousePressEvent. The current pixel position of the cursor on the QCustomPlot widget is accessible via \c event->pos(). The parameter \a startPos indicates the position where the initial \ref mousePressEvent occurred, that started the mouse i
| 1774 | \see mousePressEvent, mouseMoveEvent, mouseDoubleClickEvent, wheelEvent |
| 1775 | */ |
| 1776 | void QCPLayerable::mouseReleaseEvent(QMouseEvent *event, const QPointF &startPos) |
| 1777 | { |
| 1778 | Q_UNUSED(startPos) |
| 1779 | event->ignore(); |
| 1780 | } |
| 1781 | |
| 1782 | /*! |
| 1783 | This event gets called when the user presses the mouse button a second time in a double-click, |
nothing calls this directly
no test coverage detected