X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fview%2Ftimemarker.cpp;h=88616bf20fb2cdb1a06367aeb8ee77250fc2c55b;hp=4874eb233c7ebf7d9fe5e282883dc93a1efbc8a7;hb=cb5a1216019ae561046f7812b7fc67c11ea3d6c5;hpb=857ebbef1c10cdc02df03af1fb446c704809394e diff --git a/pv/view/timemarker.cpp b/pv/view/timemarker.cpp index 4874eb2..88616bf 100644 --- a/pv/view/timemarker.cpp +++ b/pv/view/timemarker.cpp @@ -18,6 +18,7 @@ */ #include +#include #include @@ -73,7 +74,7 @@ void TimeMarker::set_time(const pv::util::Timestamp& time) float TimeMarker::get_x() const { - return ((time_ - view_.offset()) / view_.scale()).convert_to(); + return std::roundf(((time_ - view_.offset()) / view_.scale()).convert_to()) + 0.5f; } QPoint TimeMarker::point(const QRect &rect) const @@ -107,7 +108,7 @@ void TimeMarker::paint_label(QPainter &p, const QRect &rect, bool hover) if (!enabled()) return; - const qreal x = ((time_ - view_.offset()) / view_.scale()).convert_to(); + const qreal x = get_x(); const QRectF r(label_rect(rect)); const QPointF points[] = {