| 109 | |
| 110 | |
| 111 | void EntropyWidget::mousePressEvent(QMouseEvent* event) |
| 112 | { |
| 113 | if (event->button() != Qt::LeftButton) |
| 114 | return; |
| 115 | float frac = (float)event->pos().x() / (float)rect().width(); |
| 116 | uint64_t offset = (uint64_t)(frac * m_width * m_blockSize); |
| 117 | m_view->navigateToFileOffset(offset); |
| 118 | } |
nothing calls this directly
no test coverage detected