X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.cpp;h=1e5b8206e54165ebc3cc36e20181eef686c422ce;hp=894f023bf11c4d547db8649398905a8e57c8abe8;hb=7708eb92ca87836f5d4987899e0fbb7a4e2335b4;hpb=1dffa582704bb6acb144a3e89bd6eb0e2ccf4f25 diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index 894f023b..1e5b8206 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -88,11 +88,18 @@ QRectF TimeMarker::label_rect(const QRectF &rect) const const QSizeF label_size(text_size + LabelPadding * 2); const float top = rect.height() - label_size.height() - TimeMarker::ArrowSize - 0.5f; - const float x = (time_ - view_.offset()) / view_.scale(); + const float x = get_x(); return QRectF(QPointF(x - label_size.width() / 2, top), label_size); } +QRectF TimeMarker::hit_box_rect(const QRectF &rect) const +{ + const float x = get_x(); + const float h = QFontMetrics(QApplication::font()).height(); + return QRectF(x - h / 2.0f, rect.top(), h, rect.height()); +} + void TimeMarker::paint_label(QPainter &p, const QRect &rect, bool hover) { if (!enabled())